Commit c7bc89ce authored by Max's avatar Max Committed by Dan Abramov
Browse files

Remove || exit 1

parent ce9fdca5
Showing with 6 additions and 6 deletions
+6 -6
......@@ -40,8 +40,8 @@ npm start -- --smoke-test
npm run build
# Check for expected output
test -e build/*.html || exit 1
test -e build/*.js || exit 1
test -e build/*.html
test -e build/*.js
# Pack CLI
cd global-cli
......@@ -63,8 +63,8 @@ cd test-app
npm run build
# Check for expected output
test -e build/*.html || exit 1
test -e build/*.js || exit 1
test -e build/*.html
test -e build/*.js
# Test the server
npm start -- --smoke-test
......@@ -74,8 +74,8 @@ echo yes | npm run eject
npm run build
# Check for expected output
test -e build/*.html || exit 1
test -e build/*.js || exit 1
test -e build/*.html
test -e build/*.js
# Test the server
npm start -- --smoke-test
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment