diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-12-31 13:19:32 +0200 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-12-31 13:19:32 +0200 |
commit | 1a3369877e940447a75ec1ec1f42776dce283f37 (patch) | |
tree | 57c130df989a9e6144e612a565e6a240e1cad449 /.ci | |
parent | matrix-structs: Fix historical user ID decoding (diff) | |
download | nheko-1a3369877e940447a75ec1ec1f42776dce283f37.tar.xz |
Update travis
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/linux/create-packages.sh | 4 | ||||
-rwxr-xr-x | .ci/linux/deploy.sh | 4 | ||||
-rwxr-xr-x | .ci/macos/deploy.sh | 4 |
3 files changed, 0 insertions, 12 deletions
diff --git a/.ci/linux/create-packages.sh b/.ci/linux/create-packages.sh index e18c2e6f..bd644fce 100755 --- a/.ci/linux/create-packages.sh +++ b/.ci/linux/create-packages.sh @@ -7,10 +7,6 @@ DIR=package.dir TAG=`git tag -l --points-at HEAD` -if [ -z "$TAG" ]; then - exit 0 -fi - # Installing dependencies on travis. if [ ! -z "$TRAVIS_OS_NAME" ]; then sudo apt-add-repository -y ppa:brightbox/ruby-ng diff --git a/.ci/linux/deploy.sh b/.ci/linux/deploy.sh index 0e85bbdb..93566162 100755 --- a/.ci/linux/deploy.sh +++ b/.ci/linux/deploy.sh @@ -6,10 +6,6 @@ APP=nheko DIR=${APP}.AppDir TAG=`git tag -l --points-at HEAD` -if [ -z "$TAG" ]; then - exit 0 -fi - # Set up AppImage structure. mkdir -p ${DIR}/usr/{bin,share/pixmaps,share/applications} diff --git a/.ci/macos/deploy.sh b/.ci/macos/deploy.sh index 7d28b81e..487b5be7 100755 --- a/.ci/macos/deploy.sh +++ b/.ci/macos/deploy.sh @@ -4,10 +4,6 @@ set -e TAG=`git tag -l --points-at HEAD` -if [ -z "$TAG" ]; then - exit 0 -fi - # Add Qt binaries to path PATH=/usr/local/opt/qt/bin/:${PATH} |