Commit 699aa9e6 authored by Jason Chu's avatar Jason Chu
Browse files

added the option for an extra message in the cvs commit

git-svn-id: http://projects.xennet.org/archtools/devtools/trunk@156 630f3fb4-fbd1-0310-a574-b293cca3120f
parent c75f35be
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -33,7 +33,14 @@ fi

scp $pkgfile archlinux.org:/home/ftp/$repo/os/$CARCH
echo "===> Uploaded $pkgfile"
if [ "$1" != "" ]; then
cvs commit -m "upgpkg: $pkg $ver
$1" > /dev/null
echo "===> Commited with \"upgpkg: $pkg $ver
$1\" message"
else
cvs commit -m "upgpkg: $pkg $ver" > /dev/null
echo "===> Commited with \"upgpkg: $pkg $ver\" message"
fi
cvs tag -c -F -R $tag > /dev/null
echo "===> Tagged as $tag"