diff options
author | redsky17 <joedonofry@gmail.com> | 2019-05-01 11:59:10 -0400 |
---|---|---|
committer | redsky17 <joedonofry@gmail.com> | 2019-05-01 11:59:10 -0400 |
commit | b2c8c6a1c69445a71c7a50f225df9c8edb18b570 (patch) | |
tree | 9815f6fd3045e541672eaee2e523406861edf582 /.ci | |
parent | Use bash instead of sh because the qt env script needs to be run under bash. (diff) | |
download | nheko-b2c8c6a1c69445a71c7a50f225df9c8edb18b570.tar.xz |
Remove unset var causing error due to Qt script
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 658dc5eb..07ff56ed 100755 --- a/.ci/script.sh +++ b/.ci/script.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -eux +set -ex if [ "$TRAVIS_OS_NAME" = "linux" ]; then export CC=${C_COMPILER} |