cryptomator / cryptomator-linux

Cryptomator .AppImage for Linux
GNU General Public License v3.0
14 stars 7 forks source link

Fix build.sh to download the proper antkit #5

Closed pquan closed 5 years ago

pquan commented 6 years ago

This is a small fix to actually download the antkit on linux. Also added a new .gitignore so that the files from the build process are not included in the repository.

CLAassistant commented 6 years ago

CLA assistant check
All committers have signed the CLA.

overheadhunter commented 6 years ago

Proposed changes for .travis.yml:

- install:
- - |
-   if [[ -n "${TRAVIS_TAG}" ]]; then
-     curl -o antkit.zip -L https://github.com/cryptomator/cryptomator/releases/download/${TRAVIS_TAG}/antkit.zip
-   else
-     curl -o antkit.zip -L https://github.com/cryptomator/cryptomator/releases/download/continuous/antkit.zip
-   fi
- - unzip antkit.zip
- script:
- - |
-   if [[ -n "${TRAVIS_TAG}" ]]; then
-     ./build.sh ${TRAVIS_TAG}
-   else
-     ./build.sh continuous
-   fi
+ script:
+ ./build.sh ${TRAVIS_TAG}
overheadhunter commented 5 years ago

Closing since this is outdated.