2 files changed, 2 insertions, 2 deletions
diff --git a/.ci/script.sh b/.ci/script.sh
index 555b4825..15e7f8cf 100755
--- a/.ci/script.sh
+++ b/.ci/script.sh
@@ -6,7 +6,7 @@ if [ "$FLATPAK" ]; then
mkdir -p build-flatpak
cd build-flatpak
- travis_wait flatpak-builder --ccache --repo=repo --subject="Build of Nheko ${VERSION} `date`" app ../io.github.NhekoReborn.Nheko.json
+ flatpak-builder --ccache --repo=repo --subject="Build of Nheko ${VERSION} `date`" app ../io.github.NhekoReborn.Nheko.json
flatpak build-bundle repo nheko-${VERSION}-${ARCH}.flatpak io.github.NhekoReborn.Nheko master
mkdir ../artifacts
diff --git a/.travis.yml b/.travis.yml
index eec32290..1dc2feeb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -134,7 +134,7 @@ install:
- export PATH=/usr/local/bin:${PATH}
script:
- - ./.ci/script.sh
+ - travis_wait ./.ci/script.sh
- sed -i -e "s/VERSION_NAME_VALUE/${VERSION}/g" ./.ci/bintray-release.json || true
- cp ./.ci/bintray-release.json .
deploy:
|