Skip to content

Commit

Permalink
Replace travis vars
Browse files Browse the repository at this point in the history
  • Loading branch information
gamalielhere committed Aug 22, 2018
1 parent cb8baf0 commit 678c231
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
- stage: check contract format
script:
- |
val=$(node checkContract.js);
if [[ $val != 0 ]]; then
contractErrors=$(node checkContract.js);
if [[ $contractErrors != 0 ]]; then
echo "Formatting errors! Please check your object keys spellings, commas and or other things that might invalidate your JSON and try again";
exit 1;
else
Expand All @@ -21,8 +21,8 @@ jobs:
- stage: check token format
script:
- |
val=$(node checkToken.js);
if [[ $val != 0 ]]; then
tokenErrors=$(node checkToken.js);
if [[ $tokenErrors != 0 ]]; then
echo "Formatting errors! Please check your object keys spellings, commas and or other things that might invalidate your JSON and try again";
exit 1;
else
Expand Down

0 comments on commit 678c231

Please sign in to comment.