From 648ba62b1f156cbca14d54d06c535385f1193d13 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Mon, 16 May 2005 04:27:57 +0000 Subject: [PATCH] perform a initial cvs update --- util/update_branches | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/util/update_branches b/util/update_branches index bb57e4fa04..b7009fc3cd 100644 --- a/util/update_branches +++ b/util/update_branches @@ -14,12 +14,14 @@ # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -# $Id: update_branches,v 1.1 2005/05/16 04:21:29 marka Exp $ +# $Id: update_branches,v 1.2 2005/05/16 04:27:57 marka Exp $ %branches = (); %whom = (); %comments = (); +!system("cvs", "-d", "/proj/cvs/prod", "update", "doc/private/branches") || die "cannot update doc/private/branches: $!"; + # # load existing content # @@ -131,5 +133,5 @@ close(BRANCHES); # if (system("cmp", "-s", "doc/private/newbranches", "doc/private/branches")) { rename("doc/private/newbranches", "doc/private/branches") || die "Cannot rename: doc/private/newbranches -> doc/private/branches: $!"; - system("cvs", "-d", "/proj/cvs/prod", "commit", "-m", "auto update", "doc/private/branches") || die "cvs commit failed: $!"; + !system("cvs", "-d", "/proj/cvs/prod", "commit", "-m", "auto update", "doc/private/branches") || die "cvs commit failed: $!"; }