Skip to content

Commit

Permalink
Add semicolons to build script.
Browse files Browse the repository at this point in the history
  • Loading branch information
gdotdesign committed Mar 18, 2018
1 parent cab835e commit 081a05d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ os:
before_deploy:
- mkdir build
- if [ $TRAVIS_OS_NAME == "osx" ]; then
crystal build src/mint.cr -o build/mint-${TRAVIS_TAG:-latest}-$TRAVIS_OS_NAME --release --no-debug
crystal build src/mint.cr -o build/mint-${TRAVIS_TAG:-latest}-$TRAVIS_OS_NAME --release --no-debug;
else
crystal build src/mint.cr -o build/mint-${TRAVIS_TAG:-latest}-$TRAVIS_OS_NAME --release --no-debug --static
crystal build src/mint.cr -o build/mint-${TRAVIS_TAG:-latest}-$TRAVIS_OS_NAME --release --no-debug --static;
fi

deploy:
Expand Down

0 comments on commit 081a05d

Please sign in to comment.