Skip to content

Commit

Permalink
corrected script for tweet when BETA (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
ferranpons committed Dec 8, 2017
1 parent 59f5c72 commit 86d0edf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion travis/tweetAfterDeploy.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

if [[ $TRAVIS_TAG ]]
if [ $TRAVIS_TAG ]; then
python ./twitterUpdate.py -k "$TWITTER_API_KEY" -s "$TWITTER_API_SECRET" -a "$TWITTER_ACCESS_TOKEN" -t "$TWITTER_ACCESS_TOKEN_SECRET" -u "New Zombusters version $MAJOR.$MINOR.$PATCH now available for download. Check out the details at https://retrowax.itch.io/zombusters"
else
python ./twitterUpdate.py -k "$TWITTER_API_KEY" -s "$TWITTER_API_SECRET" -a "$TWITTER_ACCESS_TOKEN" -t "$TWITTER_ACCESS_TOKEN_SECRET" -u "New Zombusters BETA version $MAJOR.$MINOR.$PATCH now available for download. Check out the details at https://github.com/retrowax/Zombusters/blob/master/CHANGELOG.md"
Expand Down

0 comments on commit 86d0edf

Please sign in to comment.