From 4bddfd37b791cbd0a61a22f291935776ece63bd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Tue, 20 Sep 2016 21:47:37 +0200 Subject: [PATCH] reverse condition for nightly --- travis/script.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/travis/script.sh b/travis/script.sh index 2accc8ae2..5dfa7b342 100644 --- a/travis/script.sh +++ b/travis/script.sh @@ -2,10 +2,10 @@ # If we've got website password, we can upload nightly builds. # Travis secure variable $website_password is not available from outside # of jpexs repository (e.g pull requests from other users on GitHub) -if [ -z ${website_password+x} ]; then +if [ -z ${website_password+x} ]; then + # password not set, just make private release without publishing result + ant all +else # create nightly build ant new-version-nightlybuild -else - # just make private release without publishing result - ant all fi \ No newline at end of file