Modern versions of yarn don't require -- to forward options.

pull/7/head
Dave Page 2018-01-22 11:29:07 +00:00
parent 2b1c887945
commit 0ec74dfa89
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ linter:
cd web && yarn run linter
check: install-node bundle linter
cd web && yarn run karma start -- --single-run && python regression/runtests.py
cd web && yarn run karma start --single-run && python regression/runtests.py
check-python:
cd web && python regression/runtests.py --exclude feature_tests
@ -44,7 +44,7 @@ check-feature: install-node bundle
cd web && python regression/runtests.py --pkg feature_tests
check-js: install-node linter
cd web && yarn run karma start -- --single-run
cd web && yarn run karma start --single-run
# Include all clean sub-targets in clean
clean: clean-appbundle clean-docker clean-dist clean-docs clean-pip clean-src