diff options
author | redsky17 <joedonofry@gmail.com> | 2019-05-01 13:01:48 -0400 |
---|---|---|
committer | redsky17 <joedonofry@gmail.com> | 2019-05-01 13:01:48 -0400 |
commit | b0aa8bc2b4b4a9a243d2969f7ec470adb1048a24 (patch) | |
tree | 8987163e8428d431f710f2b83aaed53826caf6e1 /.ci | |
parent | Remove unset var causing error due to Qt script (diff) | |
download | nheko-b0aa8bc2b4b4a9a243d2969f7ec470adb1048a24.tar.xz |
Remove 'error on unset' for travis builds
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/install.sh | 2 | ||||
-rwxr-xr-x | .ci/linux/deploy.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.ci/install.sh b/.ci/install.sh index 6a40fdee..3b276497 100755 --- a/.ci/install.sh +++ b/.ci/install.sh @@ -1,6 +1,6 @@ #!/usr/bin/env sh -set -eux +set -ex if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update diff --git a/.ci/linux/deploy.sh b/.ci/linux/deploy.sh index b8c1c5e3..403fde14 100755 --- a/.ci/linux/deploy.sh +++ b/.ci/linux/deploy.sh @@ -1,6 +1,6 @@ #!/usr/bin/env sh -set -eux +set -ex APP=nheko DIR=${APP}.AppDir |