about summary refs log tree commit diff
path: root/devscripts
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2016-06-04 11:42:52 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2016-06-04 11:42:52 +0200
commitcad88f96dc8eaa845a458f0b80e92c1ba36c5491 (patch)
tree37368a5a0ca27cd6b46aae5ca16c10ba46a56c5a /devscripts
parent762d44c9567af424b2731cb643429ddd8e76d704 (diff)
downloadyoutube-dl-cad88f96dc8eaa845a458f0b80e92c1ba36c5491.tar.gz
youtube-dl-cad88f96dc8eaa845a458f0b80e92c1ba36c5491.tar.xz
youtube-dl-cad88f96dc8eaa845a458f0b80e92c1ba36c5491.zip
disable uploading to yt-dl.org for now
Diffstat (limited to 'devscripts')
-rwxr-xr-xdevscripts/release.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/devscripts/release.sh b/devscripts/release.sh
index cde4d0a39..1a7b1e054 100755
--- a/devscripts/release.sh
+++ b/devscripts/release.sh
@@ -97,8 +97,10 @@ RELEASE_FILES="youtube-dl youtube-dl.exe youtube-dl-$version.tar.gz"
 
 /bin/echo -e "\n### Signing and uploading the new binaries to yt-dl.org ..."
 for f in $RELEASE_FILES; do gpg --passphrase-repeat 5 --detach-sig "build/$version/$f"; done
-scp -r "build/$version" ytdl@yt-dl.org:html/tmp/
-ssh ytdl@yt-dl.org "mv html/tmp/$version html/downloads/"
+
+echo 'TODO: upload on GitHub'
+exit 1
+
 ssh ytdl@yt-dl.org "sh html/update_latest.sh $version"
 
 /bin/echo -e "\n### Now switching to gh-pages..."