mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Quote stuff properly
This commit is contained in:
+3
-3
@@ -42,7 +42,7 @@ cleanup() {
|
||||
|
||||
if [[ -n "$CMDLINE_PID" ]]
|
||||
then
|
||||
safe_kill $CMDLINE_PID "Commandline tests"
|
||||
safe_kill "$CMDLINE_PID" "Commandline tests"
|
||||
fi
|
||||
|
||||
echo "Cleaning up working directory ${WORKDIR} ..."
|
||||
@@ -72,7 +72,7 @@ then
|
||||
"$REPO_ROOT/test/cmdlineTests.sh" &
|
||||
CMDLINE_PID=$!
|
||||
else
|
||||
if ! $REPO_ROOT/test/cmdlineTests.sh
|
||||
if ! "$REPO_ROOT/test/cmdlineTests.sh"
|
||||
then
|
||||
printError "Commandline tests FAILED"
|
||||
exit 1
|
||||
@@ -105,7 +105,7 @@ do
|
||||
then
|
||||
force_abiv1_flag="--abiencoderv1"
|
||||
fi
|
||||
printTask "--> Running tests using "$optimize" --evm-version "$vm" $force_abiv1_flag..."
|
||||
printTask "--> Running tests using $optimize --evm-version $vm $force_abiv1_flag..."
|
||||
|
||||
log=""
|
||||
if [ -n "$log_directory" ]
|
||||
|
||||
Reference in New Issue
Block a user