File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -82,20 +82,20 @@ echo "logfile name: $TEST_RUNS_FILE_NAME"
82
82
# # Setup and run tests
83
83
for index in ${! input2[*]} ;
84
84
do
85
- args=(" ${input2[$index]} " )
85
+ args=(${input2[$index]} )
86
86
87
87
if [[ " $gemfile " != " " && " $gemfile " != " ${args[1]} " ]]; then continue ; fi
88
88
export BUNDLE_GEMFILE=${args[1]}
89
89
# echo ${args[1]}.lock
90
- rm -f " ${args[1]} " .lock
90
+ rm -f ${args[1]} .lock
91
91
92
92
if [[ " $env " != " " && " $env " != " ${args[2]} " ]]; then continue ; fi
93
93
export ${args[2]}
94
94
95
95
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]}
99
99
echo
100
100
echo " Installing gems ... for $( ruby -v) "
101
101
if [[ " $BUNDLE_GEMFILE " == * " gemfiles/frameworks.gemfile" * || " $BUNDLE_GEMFILE " == * " gemfiles/rails42.gemfile" * ]]
You can’t perform that action at this time.
0 commit comments