Wrap shell commands in single quotes

This commit is contained in:
LeoHsiao 2020-08-12 20:56:35 +08:00
parent 6773c6c74b
commit fca6e2e30a

View File

@ -148,8 +148,8 @@ python_tests:
@echo
@echo ---- Running python_tests ----
@echo
@echo bash -c " . functions.source ; cd ../tests ; if [ ! -z $$VERBOSE ]; then verbose=--verbose ;fi ; python3 runner.py $$verbose "
@bash -c " . functions.source ; cd ../tests ; if [ ! -z $$VERBOSE ]; then verbose=--verbose ;fi ; python3 runner.py $$verbose "
@echo bash -c ' . functions.source ; cd ../tests ; if [ ! -z $$VERBOSE ]; then verbose=--verbose ;fi ; python3 runner.py $$verbose '
@bash -c ' . functions.source ; cd ../tests ; if [ ! -z $$VERBOSE ]; then verbose=--verbose ;fi ; python3 runner.py $$verbose '
mostlyclean clean:
rm -rf $(top_srcdir)/test/tmp/*