diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-06-12 08:54:36 -0700 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-06-12 08:54:36 -0700 |
commit | 360fcd2f0ecaba3c8bb0e56e7fc6014dacfb3ec7 (patch) | |
tree | ab262d130d362d38ff51c4f678aed05531a5a6ae /commitpkg | |
parent | e03dfc4665666e5a23945feeeb95a691d000a35f (diff) | |
download | devtools32-360fcd2f0ecaba3c8bb0e56e7fc6014dacfb3ec7.tar.xz |
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>
Diffstat (limited to 'commitpkg')
-rwxr-xr-x | commitpkg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |