Skip to content

Commit 1b888b8

Browse files
committed
remove more quotes
1 parent 8f68fcc commit 1b888b8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/run_tests/run_tests.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,20 +82,20 @@ echo "logfile name: $TEST_RUNS_FILE_NAME"
8282
## Setup and run tests
8383
for index in ${!input2[*]} ;
8484
do
85-
args=("${input2[$index]}")
85+
args=(${input2[$index]})
8686

8787
if [[ "$gemfile" != "" && "$gemfile" != "${args[1]}" ]]; then continue; fi
8888
export BUNDLE_GEMFILE=${args[1]}
8989
# echo ${args[1]}.lock
90-
rm -f "${args[1]}".lock
90+
rm -f ${args[1]}.lock
9191

9292
if [[ "$env" != "" && "$env" != "${args[2]}" ]]; then continue; fi
9393
export ${args[2]}
9494

9595
if [[ "$ruby" != "" && "$ruby" != "${args[0]}" ]]; then continue; fi
96-
if [[ "${args[0]}" != "$current_ruby" ]]; then
97-
rbenv local "${args[0]}"
98-
current_ruby="${args[0]}"
96+
if [[ "${args[0]}" != $current_ruby ]]; then
97+
rbenv local ${args[0]}
98+
current_ruby=${args[0]}
9999
echo
100100
echo "Installing gems ... for $(ruby -v)"
101101
if [[ "$BUNDLE_GEMFILE" == *"gemfiles/frameworks.gemfile"* || "$BUNDLE_GEMFILE" == *"gemfiles/rails42.gemfile"* ]]

0 commit comments

Comments
 (0)