Skip to content

Commit

Permalink
build: (logic preference) exit instead of OR condition
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Ziogas <ziogaschr@gmail.com>
  • Loading branch information
meowsbits and ziogaschr committed Sep 21, 2021
1 parent 98734ae commit 1db8fb9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/ssvm.sh
Expand Up @@ -8,5 +8,6 @@ if [[ "$OSTYPE" != "linux"* ]]; then
fi

mkdir -p build/_workspace/SSVM/build/tools/ssvm-evmc/
[[ -f build/_workspace/SSVM/build/tools/ssvm-evmc/libssvmEVMC.so ]] || wget -O build/_workspace/SSVM/build/tools/ssvm-evmc/libssvmEVMC.so \
[[ -f build/_workspace/SSVM/build/tools/ssvm-evmc/libssvmEVMC.so ]] && exit 0
wget -O build/_workspace/SSVM/build/tools/ssvm-evmc/libssvmEVMC.so \
https://github.com/second-state/ssvm-evmc/releases/download/evmc7-0.1.1/libssvm-evmc.so

0 comments on commit 1db8fb9

Please sign in to comment.