From f47e69ceae8c5ec9e4748cdbd50c49716679b024 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Wed, 23 Nov 2016 20:32:03 -0800 Subject: [PATCH] mkdir -p tmp/... (#134) This is needed in case we're on a branch which didn't have a ./tmp --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 9fe4f5e..a5ea71b 100644 --- a/justfile +++ b/justfile @@ -42,7 +42,7 @@ build-and-fetch-linux-binary VERSION: vagrant up vagrant ssh -- 'bash -lc "cd just && git checkout master && git pull && just build-binary-linux {{VERSION}}"' rm -rf tmp/linux - mkdir tmp/linux + mkdir -p tmp/linux scp \ -P 2222 \ -i .vagrant/machines/default/virtualbox/private_key \ @@ -55,7 +55,7 @@ build-binary VERSION TARGET: cargo build --release --target={{TARGET}} rm -rf tmp/just-{{VERSION}}-{{TARGET}} rm -rf tmp/just-{{VERSION}}-{{TARGET}}.tar.gz - mkdir tmp/just-{{VERSION}}-{{TARGET}} + mkdir -p tmp/just-{{VERSION}}-{{TARGET}} cp \ GRAMMAR.md \ LICENSE.md \