From 0ec74dfa8934726685c01b86832678dceda0e2d2 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Mon, 22 Jan 2018 11:29:07 +0000 Subject: [PATCH] Modern versions of yarn don't require -- to forward options. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5e973d56b..6136162af 100644 --- a/Makefile +++ b/Makefile @@ -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