Fix release script call

The script was logging "Script failed with status 127". It seems that this is due to release.sh not being executable and not being referenced with a path starting with ./.
This commit is contained in:
Lucas Bickel 2017-04-25 11:06:28 +02:00
parent 2b30a14744
commit 4dc45a935f
2 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ deploy:
condition: $PYTHON = true
- provider: script
skip_cleanup: true
script: travis/release.sh
script: ./travis/release.sh
on:
tags: true
condition: $PYTHON = true

0
travis/release.sh Normal file → Executable file
View File