From 1924c7554198d9da516af6b0576d0f04c909a5f4 Mon Sep 17 00:00:00 2001 From: "jake%bugzilla.org" <> Date: Tue, 27 Aug 2002 11:07:14 +0000 Subject: Bug 86651 - cvs-update was setting sticky dates which made commiting changes and getting updates more difficult r=bbaetz, jouni --- contrib/cvs-update.sh | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'contrib') diff --git a/contrib/cvs-update.sh b/contrib/cvs-update.sh index f74220073..e6dcc6eeb 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 -- cgit v1.2.3-24-g4f1b