Skip to content

Commit d05cc83

Browse files
committed
nth times the charm
1 parent 92560e2 commit d05cc83

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/ember/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"lint:hbs": "ember-template-lint .",
2424
"lint:js": "eslint . --cache --cache-location '../../eslintcache/'",
2525
"start": "ember serve",
26-
"test": ". ./scripts/run_tests.sh",
26+
"test": "bash ./scripts/run_tests.sh",
2727
"test:ember": "ember test",
2828
"test:ember-compatibility": "ember try:each",
2929
"prepublishOnly": "ember ts:precompile",
@@ -94,4 +94,4 @@
9494
"node": "12.18.3",
9595
"yarn": "1.22.4"
9696
}
97-
}
97+
}

packages/ember/scripts/run_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if $TRAVIS; then echo "$TRAVIS"; else echo "no TRAVIS"; fi
99
if [[ $TRAVIS ]]; then echo "$TRAVIS"; else echo "no [[ ]] TRAVIS"; fi
1010
if [[ -n $TRAVIS ]]; then echo "-n $TRAVIS"; else echo "no -n TRAVIS"; fi
1111

12-
if $TRAVIS || $GITHUB_ACTIONS; then
12+
if [[ $TRAVIS || $GITHUB_ACTIONS ]]; then
1313
echo "In CI - running tests against multiple versions of Ember"
1414
# yarn npm-run-all lint:* test:*
1515
else

0 commit comments

Comments
 (0)