From c17dc2fe78134d8ac5e24644dfa8f2a14814dce5 Mon Sep 17 00:00:00 2001 From: Leif Madsen Date: Tue, 8 Nov 2011 13:26:03 +0000 Subject: [PATCH] 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 --- build_tools/prep_tarball | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!"