From 50a188a5f1a7ea74c9a2768f1759f73bc2434f6c Mon Sep 17 00:00:00 2001 From: dannyrb Date: Tue, 21 May 2019 13:49:21 -0400 Subject: [PATCH] fix: Create our tmp directory before we try to create a file in it --- .releaserc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.releaserc b/.releaserc index e68552d28..b462f33c7 100644 --- a/.releaserc +++ b/.releaserc @@ -7,7 +7,7 @@ [ "@semantic-release/exec", { - "publishCmd": "echo ${nextRelease.version} > ~/tmp/updated-version.txt" + "publishCmd": "mkdir ~/tmp && echo ${nextRelease.version} > ~/tmp/updated-version.txt" } ] ]