svn: remove the default -m commit arg

This should force people to add a valid commit message
when updating PKGBUILDs and the like. Passing it on the
command line still works fine

Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
This commit is contained in:
Aaron Griffin 2009-06-12 08:54:36 -07:00
parent e03dfc4665
commit 360fcd2f0e
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ if [ "$1" != "" ]; then
echo "===> Commited with \"upgpkg: $pkgname $pkgver-$pkgrel
$1\" message"
else
svn commit -m "upgpkg: $pkgname $pkgver-$pkgrel" > /dev/null
svn commit >/dev/null
if [ $? -ne 0 ]; then
echo "Cancelled"
exit 1