Remove || exit 1

This commit is contained in:
Max
2016-07-22 07:57:31 +02:00
committed by Dan Abramov
parent ce9fdca524
commit c7bc89ce29

View File

@@ -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