From: Amos Jeffries Date: Wed, 14 Jul 2010 12:08:16 +0000 (+1200) Subject: Maintenance: reset working directory after snapshot sub-make.sh X-Git-Tag: SQUID_3_2_0_1~61 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0a843971d2829d54987f3bdeffe56e903579d7c5;p=thirdparty%2Fsquid.git Maintenance: reset working directory after snapshot sub-make.sh --- diff --git a/mksnapshot-cron.sh b/mksnapshot-cron.sh index 7968b4a519..8b7100cc6a 100755 --- a/mksnapshot-cron.sh +++ b/mksnapshot-cron.sh @@ -86,7 +86,9 @@ make_snapshot() # update web page if [ -x ${dst}/make.sh ]; then - cd ${dst} ; ./make.sh + cd ${dst} + ./make.sh + cd ${top}/../release fi } }