diff options
author | redsky17 <joedonofry@gmail.com> | 2019-01-31 22:52:31 +0000 |
---|---|---|
committer | redsky17 <joedonofry@gmail.com> | 2019-01-31 22:52:31 +0000 |
commit | 7a23e1762575786f1d9c8822d51e863a1125a048 (patch) | |
tree | 4c371ab77cce46d2f0f2345149c9a44088d102bd /.ci | |
parent | Update deployment configuration (diff) | |
download | nheko-7a23e1762575786f1d9c8822d51e863a1125a048.tar.xz |
Fix typo in script.sh
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/script.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/script.sh b/.ci/script.sh index 930af752..d3aeb417 100755 --- a/.ci/script.sh +++ b/.ci/script.sh @@ -41,6 +41,6 @@ if [ $TRAVIS_OS_NAME == osx ]; then fi fi -if [ $TRAVIS_OS_NAME == linux ] && [ $DEPLOYMENT == 1 && [ ! -z $VERSION ] ; then +if [ $TRAVIS_OS_NAME == linux ] && [ $DEPLOYMENT == 1 ] && [ ! -z $VERSION ] ; then make linux-deploy; fi |