Skip to content

Commit

Permalink
Fix a typo in a script to publish the windows installer
Browse files Browse the repository at this point in the history
  • Loading branch information
Slava committed Mar 26, 2015
1 parent 28c760e commit 47c62e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/admin/copy-windows-installer-from-jenkins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ fi
echo Found build "$DIRNAME"

# aws s3 ls returns 0 when it lists nothing
if [[ $(aws s3 ls "s3://com.meteor.jenkins/$DIRNAME/InstallMeteor.exe" | wc -l) == 0 ]] then
if [[ $(aws s3 ls "s3://com.meteor.jenkins/$DIRNAME/InstallMeteor.exe" | wc -l) == 0 ]]; then
echo "InstallMeteor.exe wasn't found in $DIRNAME, did Jenkins job fail?"
exit 1
fi
Expand Down

0 comments on commit 47c62e9

Please sign in to comment.