mkdir -p tmp/... (#134)
This is needed in case we're on a branch which didn't have a ./tmp
This commit is contained in:
parent
efb4d5e908
commit
f47e69ceae
4
justfile
4
justfile
@ -42,7 +42,7 @@ build-and-fetch-linux-binary VERSION:
|
|||||||
vagrant up
|
vagrant up
|
||||||
vagrant ssh -- 'bash -lc "cd just && git checkout master && git pull && just build-binary-linux {{VERSION}}"'
|
vagrant ssh -- 'bash -lc "cd just && git checkout master && git pull && just build-binary-linux {{VERSION}}"'
|
||||||
rm -rf tmp/linux
|
rm -rf tmp/linux
|
||||||
mkdir tmp/linux
|
mkdir -p tmp/linux
|
||||||
scp \
|
scp \
|
||||||
-P 2222 \
|
-P 2222 \
|
||||||
-i .vagrant/machines/default/virtualbox/private_key \
|
-i .vagrant/machines/default/virtualbox/private_key \
|
||||||
@ -55,7 +55,7 @@ build-binary VERSION TARGET:
|
|||||||
cargo build --release --target={{TARGET}}
|
cargo build --release --target={{TARGET}}
|
||||||
rm -rf tmp/just-{{VERSION}}-{{TARGET}}
|
rm -rf tmp/just-{{VERSION}}-{{TARGET}}
|
||||||
rm -rf tmp/just-{{VERSION}}-{{TARGET}}.tar.gz
|
rm -rf tmp/just-{{VERSION}}-{{TARGET}}.tar.gz
|
||||||
mkdir tmp/just-{{VERSION}}-{{TARGET}}
|
mkdir -p tmp/just-{{VERSION}}-{{TARGET}}
|
||||||
cp \
|
cp \
|
||||||
GRAMMAR.md \
|
GRAMMAR.md \
|
||||||
LICENSE.md \
|
LICENSE.md \
|
||||||
|
Loading…
Reference in New Issue
Block a user