From 59dd01f1c76097521fd98f9481caf64d75b81df3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Thu, 28 Oct 2010 18:38:10 +0200 Subject: [PATCH] Don't prepend the package name when committing it to CVS. --- sunrise-commit | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sunrise-commit b/sunrise-commit index 7a0c1e5..f3eb97f 100755 --- a/sunrise-commit +++ b/sunrise-commit @@ -480,6 +480,9 @@ main() { vcs_update fi + # In CVS, we don't prepend the package name to the commit message. + [ ${SC_VCS} = cvs ] && noprepend= + sayv "Now, let's let repoman do its job..." exec repoman commit ${old_repoman--a} ${force+-f} -m "${noprepend-${SC_CP}: }${commitmsg}" ;;