From: jake%bugzilla.org <> Date: Tue, 27 Aug 2002 11:07:14 +0000 (+0000) Subject: Bug 86651 - cvs-update was setting sticky dates which made commiting changes and... X-Git-Tag: bugzilla-2.17.1~166 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1924c7554198d9da516af6b0576d0f04c909a5f4;p=thirdparty%2Fbugzilla.git Bug 86651 - cvs-update was setting sticky dates which made commiting changes and getting updates more difficult r=bbaetz, jouni --- diff --git a/contrib/cvs-update.sh b/contrib/cvs-update.sh index f74220073d..e6dcc6eeb6 100644 --- a/contrib/cvs-update.sh +++ b/contrib/cvs-update.sh @@ -26,11 +26,16 @@ # and run the cvs command with the date that you want to back # out to. (Probably the second to last entry). +# Because this script lives in contrib, you may want to +# ln -s contrib/cvs-update.sh cvs-update +# from your bugzilla install directory so you can run +# the script easily from there (./cvs-update) + #DATE=`date +%e/%m/%Y\ %k:%M:%S\ %Z` DATE=`date` -COMMAND="cvs update -d -P -D" -echo $COMMAND \"$DATE\" >> cvs-update.log -$COMMAND "$DATE" +COMMAND="cvs -q update -dP" +echo $COMMAND -D \"$DATE\" >> cvs-update.log +$COMMAND -A # sample log file