diff --git a/.appveyor/build.bat b/.appveyor/build.bat index 23a524665..9bce8be6d 100644 --- a/.appveyor/build.bat +++ b/.appveyor/build.bat @@ -101,6 +101,8 @@ REM The previous if statements failed, skip to the end GOTO end :upload +set /p UPLOADTOOL_BODY= < latestcommit.txt + curl -L https://github.com/probonopd/uploadtool/raw/master/upload.sh > upload.sh bash upload.sh Olive*.zip bash upload.sh Olive*.exe diff --git a/.travis/after_success.sh b/.travis/after_success.sh index 116ef89b0..07602a491 100644 --- a/.travis/after_success.sh +++ b/.travis/after_success.sh @@ -16,6 +16,8 @@ if [ "$TRAVIS_TAG" != "" ] || [ "$REMOTE" == "$LOCAL" ] then echo "[INFO] Still current. Uploading..." + UPLOADTOOL_BODY=$(cat release.txt) + # Retrieve upload tool wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh diff --git a/release.txt b/release.txt new file mode 100644 index 000000000..b551f4c07 --- /dev/null +++ b/release.txt @@ -0,0 +1 @@ +NOTE: This build is by no means stable or intended for serious use. It's a complete rewrite of the entire program and only here to simplify testing of what has been implemented. For any serious work, stick to the 0.1.x releases below.