2017-11-11 17:38:41 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [ ! -z $TRAVIS_BRANCH ] && [ "$TRAVIS_BRANCH" != "master" ] ; then
|
|
|
|
export UPLOADTOOL_SUFFIX=$TRAVIS_BRANCH
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd ${TRAVIS_BUILD_DIR}/../win32/subsurface
|
|
|
|
|
2017-11-14 02:20:41 +00:00
|
|
|
echo "Submitting the following Windows files for continuous build release:"
|
2017-11-13 23:07:17 +00:00
|
|
|
find . -name subsurface\*.exe*
|
2017-11-11 17:38:41 +00:00
|
|
|
|
|
|
|
# get and run the upload script
|
|
|
|
wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
|
2017-11-13 23:07:17 +00:00
|
|
|
bash ./upload.sh subsurface*.exe*
|
2017-11-11 17:38:41 +00:00
|
|
|
|
2017-11-14 06:50:45 +00:00
|
|
|
bash -x ${TRAVIS_BUILD_DIR}/scripts/travis_end.sh
|