From 4dc45a935f0508a6ecc6a7ff1168c8413f66949d Mon Sep 17 00:00:00 2001 From: Lucas Bickel Date: Tue, 25 Apr 2017 11:06:28 +0200 Subject: [PATCH] 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 ./. --- .travis.yml | 2 +- travis/release.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 travis/release.sh diff --git a/.travis.yml b/.travis.yml index 870d66c84..80e7f0318 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/travis/release.sh b/travis/release.sh old mode 100644 new mode 100755