diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-04-28 03:08:34 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-04-28 03:08:34 +0200 |
commit | 4b62c5dbb57fabdf48f72e142442af6c6a3334b9 (patch) | |
tree | b51df1e07b48bad057f080ccb1cc9e5202395c6f /build-aux/travis-deploy.sh | |
parent | 88c2393ec8bc9a6d19394e6c5d0bff77368f0704 (diff) | |
download | blogc-4b62c5dbb57fabdf48f72e142442af6c6a3334b9.tar.gz blogc-4b62c5dbb57fabdf48f72e142442af6c6a3334b9.tar.bz2 blogc-4b62c5dbb57fabdf48f72e142442af6c6a3334b9.zip |
build: drop windows support
Diffstat (limited to 'build-aux/travis-deploy.sh')
-rwxr-xr-x | build-aux/travis-deploy.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/build-aux/travis-deploy.sh b/build-aux/travis-deploy.sh index 0ef28bf..51aac3e 100755 --- a/build-aux/travis-deploy.sh +++ b/build-aux/travis-deploy.sh @@ -22,9 +22,7 @@ if [[ ! -d build ]]; then exit 1 fi -if [[ "x${TARGET}" = xw* ]]; then - FILES=( build/*.zip ) -elif [[ "x${TARGET}" = "xdist-srpm" ]]; then +if [[ "x${TARGET}" = "xdist-srpm" ]]; then FILES=( build/*.src.rpm ) else FILES=( build/*.{*.tar.{gz,bz2,xz},zip} ) |