1
0
Fork 0

Comment out exit 1 in validate.sh

This commit is contained in:
Starbeamrainbowlabs 2017-02-23 18:13:53 +00:00
parent 394f7f4284
commit cfbb0ec2f1
1 changed files with 4 additions and 3 deletions

View File

@ -19,8 +19,9 @@ done
error_count=$(cat ${counter_filename});
echo Errors: $error_count
if [[ ${error_count} -ne 0 ]]; then
exit 1;
fi
# Uncomment to make npm die if this script doesn't work correctly
#if [[ ${error_count} -ne 0 ]]; then
# exit 1;
#fi
exit 0;