8 lines
84 B
Bash
8 lines
84 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
pushd dev_tools/release
|
||
|
bash -e release.sh ${TRAVIS_TAG}
|
||
|
popd
|