refactor(aio): remove unnecessary -- from yarn commands

This commit is contained in:
George Kalpakas
2017-09-23 17:25:11 +03:00
committed by Victor Berchet
parent 7a965dc58f
commit ffceae0a01
10 changed files with 127 additions and 577 deletions

View File

@ -51,6 +51,6 @@ readonly relevantChangedFilesCount=$(git diff --name-only $TRAVIS_COMMIT_RANGE |
# Run PWA-score tests (unless the deployment is not public yet;
# i.e. it could not be automatically verified).
if [[ $httpCode -ne 202 ]] && [[ "$isHidden" != "true" ]]; then
yarn test-pwa-score -- "$DEPLOYED_URL" "$MIN_PWA_SCORE"
yarn test-pwa-score "$DEPLOYED_URL" "$MIN_PWA_SCORE"
fi
)