ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
Revision Graph
|
Root Listing
root
/
cvs-geidontei
/
create-cvs-repo
Revision:
1.1
Committed:
Mon Sep 30 02:14:12 2024 UTC
(6 weeks, 4 days ago) by
yakumo_izuru
Branch:
MAIN
CVS Tags:
HEAD
Error occurred while calculating annotation data.
Log Message:
cvsutils was already taken
File Contents
#
Content
1
#!/bin/sh
2
if
[
!
-e
"
$HOME
/public_cvs"
]
;
then
3
echo
"You do not have
$HOME
/public_cvs"
4
echo
"Run create-cvs"
5
exit
1
6
fi
7
if
[
"x
$1
"
=
"x"
]
;
then
8
echo
"Usage:
$0
reponame"
9
exit
1
10
fi
11
mkdir
-p
$HOME
/public_cvs/
$1
12
chmod
1777
$HOME
/public_cvs/
$1