File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -131,18 +131,22 @@ then
131131fi
132132
133133log_debug running configure on core repo...
134- ( cd " $BASEDIR " /core && run_and_print_on_failure env $OPTS CFLAGS=" $CFLAGS " ./configure " $ARGS " )
134+ # shellcheck disable=SC2086
135+ ( cd " $BASEDIR " /core && run_and_print_on_failure env $OPTS CFLAGS=" $CFLAGS " ./configure $ARGS )
135136
136137if [ " $NOVA " = yes ]
137138then
138139 log_debug running configure on enterprise repo...
139- ( cd " $BASEDIR " /enterprise && run_and_print_on_failure env $OPTS CFLAGS=" $CFLAGS " ./configure " $ARGS " )
140+ # shellcheck disable=SC2086
141+ ( cd " $BASEDIR " /enterprise && run_and_print_on_failure env $OPTS CFLAGS=" $CFLAGS " ./configure $ARGS )
140142 if [ " $ROLE " = hub ]
141143 then
142144 log_debug running configure on nova repo...
143- ( cd " $BASEDIR " /nova && run_and_print_on_failure env $OPTS CFLAGS=" $CFLAGS " ./configure " $ARGS " )
145+ # shellcheck disable=SC2086
146+ ( cd " $BASEDIR " /nova && run_and_print_on_failure env $OPTS CFLAGS=" $CFLAGS " ./configure $ARGS )
144147 fi
145148fi
146149
147150log_debug running configure on masterfiles repo...
148- ( cd " $BASEDIR " /masterfiles && run_and_print_on_failure env $OPTS CFLAGS=" $CFLAGS " ./configure " $ARGS " )
151+ # shellcheck disable=SC2086
152+ ( cd " $BASEDIR " /masterfiles && run_and_print_on_failure env $OPTS CFLAGS=" $CFLAGS " ./configure $ARGS )
You can’t perform that action at this time.
0 commit comments