youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit bb28998920148e0d847333518451e046b21c2da6
parent fbc5f99db98de9707b0cb72d060a777cec2c0af4
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sat, 12 Jan 2013 18:05:19 +0100

fix location of updates_key in devscripts/release

Diffstat:
Mdevscripts/release.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/devscripts/release.sh b/devscripts/release.sh @@ -69,7 +69,7 @@ ROOT=$(pwd) cd build/gh-pages ORIGIN_URL=$(git config --get remote.origin.url) "$ROOT/devscripts/gh-pages/add-version.py" $version - "$ROOT/devscripts/gh-pages/sign-versions.py" < updates_key.pem + "$ROOT/devscripts/gh-pages/sign-versions.py" < "$ROOT/updates_key.pem" "$ROOT/devscripts/gh-pages/generate-download.py" "$ROOT/devscripts/gh-pages/update-copyright.py" git add *.html *.html.in update @@ -78,7 +78,7 @@ ROOT=$(pwd) read -p "Is it good, can I push? (y/n) " -n 1 if [[ ! $REPLY =~ ^[Yy]$ ]]; then exit 1; fi echo - git push $ORIGIN_URL gh-pages + git push "$ORIGIN_URL" gh-pages ) rm -r build