blob: 7d1ae42f533ee08f7bb2a72c160a78624abb4ab5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/usr/local/bin/perl -w
#------------------------------------------
# Check-in source file.
#------------------------------------------
use strict;
use Rcs;
Rcs->bindir('/usr/bin');
Rcs->quiet(0); # turn off quiet mode
my $obj = Rcs->new;
print "Quiet mode set\n" if Rcs->quiet;
$obj->rcsdir("./project/RCS");
$obj->workdir("./project/src");
$obj->file("testfile");
# archive file exists
if (! -e $obj->rcsdir . '/' . $obj->arcfile) {
print "Initial Check-in\n";
$obj->ci("-u");
}
# create archive file
else {
print "Check-in\n";
$obj->ci("-l");
}
|