From: Leif Madsen Date: Tue, 8 Nov 2011 13:26:03 +0000 (+0000) Subject: Fix boo-boo in prep_tarball script. X-Git-Tag: 1.8.9.0-rc1~98 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c17dc2fe78134d8ac5e24644dfa8f2a14814dce5;p=thirdparty%2Fasterisk.git Fix boo-boo in prep_tarball script. A hardcoded a branch number was in the prep_tarball which could not work. Changed it to the variable. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@343791 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/build_tools/prep_tarball b/build_tools/prep_tarball index 696f195f47..777009a0b8 100755 --- a/build_tools/prep_tarball +++ b/build_tools/prep_tarball @@ -24,6 +24,6 @@ wget https://wiki.asterisk.org/wiki/download/attachments/19005471/Asterisk-Admin echo "Extracting HTML Admin Guide" unzip Asterisk-Admin-Guide-$branch.html.zip mv AST/ Asterisk-Admin-Guide/ -mv Asterisk-Admin-Guide-1.8.pdf Asterisk-Admin-Guide.pdf +mv Asterisk-Admin-Guide-$branch.pdf Asterisk-Admin-Guide.pdf rm -f Asterisk-Admin-Guide-$branch.html.zip echo "Documentation downloaded. Goodbye!"