[Webfunds-commits] CVSROOT commit_prep.pl log_accum.pl
Jeroen C. van Gelderen
gelderen@cypherpunks.ai
Thu, 13 Jul 2000 16:38:05 -0400 (AST)
gelderen 00/07/13 16:38:05
Modified: . commit_prep.pl log_accum.pl
Log:
Change the file prefix to something that doesn't conflict with the
CVS scripts used by Cryptix CVS. These scripts really are badly written!
Revision Changes Path
1.2 +2 -2 CVSROOT/commit_prep.pl
Index: commit_prep.pl
===================================================================
RCS file: /home/webfunds/cvsroot/CVSROOT/commit_prep.pl,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- commit_prep.pl 2000/05/28 22:57:25 1.1
+++ commit_prep.pl 2000/07/13 20:38:04 1.2
@@ -1,6 +1,6 @@
#!/usr/bin/perl
#
-# $Id: commit_prep.pl,v 1.1 2000/05/28 22:57:25 gelderen Exp $
+# $Id: commit_prep.pl,v 1.2 2000/07/13 20:38:04 gelderen Exp $
#
# Perl filter to handle pre-commit checking of files. This program
# records the last directory where commits will be taking place for
@@ -12,7 +12,7 @@
#
############################################################
$TMPDIR = $ENV{'TMPDIR'} || '/tmp';
-$FILE_PREFIX = '#cvs.';
+$FILE_PREFIX = '#WebFunds-cvs.';
$LAST_FILE = "$TMPDIR/${FILE_PREFIX}lastdir"; # MUST match log_accum.pl
1.2 +2 -2 CVSROOT/log_accum.pl
Index: log_accum.pl
===================================================================
RCS file: /home/webfunds/cvsroot/CVSROOT/log_accum.pl,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- log_accum.pl 2000/05/28 22:57:25 1.1
+++ log_accum.pl 2000/07/13 20:38:04 1.2
@@ -1,6 +1,6 @@
#!/usr/bin/perl
#
-# $Id: log_accum.pl,v 1.1 2000/05/28 22:57:25 gelderen Exp $
+# $Id: log_accum.pl,v 1.2 2000/07/13 20:38:04 gelderen Exp $
#
# Perl filter to handle the log messages from the checkin of files in
# a directory. This script will group the lists of files by log
@@ -39,7 +39,7 @@
$STATE_LOG = 4;
$TMPDIR = $ENV{'TMPDIR'} || '/tmp';
-$FILE_PREFIX = '#cvs.';
+$FILE_PREFIX = '#WebFunds-cvs.';
$LAST_FILE = "$TMPDIR/${FILE_PREFIX}lastdir";
$CHANGED_FILE = "$TMPDIR/${FILE_PREFIX}files.changed";