/[cvs-geidontei]/create-cvs-repo
ViewVC logotype

Contents of /create-cvs-repo

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations)
Mon Sep 30 02:14:12 2024 UTC (6 weeks, 4 days ago) by yakumo_izuru
Branch: MAIN
CVS Tags: HEAD
cvsutils was already taken

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

nishi@chaotic.ninja
ViewVC Help
Powered by ViewVC 1.3.0-dev