Author: laxathom
Update of /cvs/nonfree/common
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24739
Modified Files:
cvs-import.sh
Log Message:
update typo
Index: cvs-import.sh
===================================================================
RCS file: /cvs/nonfree/common/cvs-import.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cvs-import.sh 3 Jun 2008 13:14:43 -0000 1.4
+++ cvs-import.sh 20 Jul 2008 20:07:42 -0000 1.5
@@ -60,6 +60,7 @@
Imports a package into the cvs repository. Will use the following defaults:
CVSROOT = $CVSROOT
BRANCH = ${BRANCH:-devel}
+CVSTREE = ${CVSTREE:-free}
The package can also be imported on a PRE-EXISTING branch using the
"-b BRANCH" flag. This script can not create new branches for you.
@@ -90,7 +91,11 @@
-t | --cvstree )
shift
- CVSTREE=${CVSTREE:=$1} && export CVSTREE
+ if [ -z $1 ] ; then
+ CVSTREE=free
+ else
+ CVSTREE=${CVSTREE:=$1} && export CVSTREE
+ fi
if [ -z "$CVSTREE" ] ; then
echo "ERROR: --cvstree requires an argument"
Usage
Show replies by date