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 ./.
7 lines
84 B
Bash
Executable file
7 lines
84 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
pushd dev_tools/release
|
|
bash -e release.sh ${TRAVIS_TAG}
|
|
popd
|