diff --git a/lib/sde-commit/commit-message.awk b/lib/sde-commit/commit-message.awk index a43e01f..a2c5c20 100644 --- a/lib/sde-commit/commit-message.awk +++ b/lib/sde-commit/commit-message.awk @@ -2,7 +2,7 @@ # This copyright note is auto-generated by ./scripts/Create-CopyPatch. # # Filename: lib/sde-commit/commit-message.awk -# Copyright (C) 2006 - 2007 The OpenSDE Project +# Copyright (C) 2006 - 2008 The OpenSDE Project # Copyright (C) 2004 - 2006 The T2 SDE Project # # More information can be found in the files COPYING and README. @@ -22,9 +22,9 @@ BEGIN { FS="[ /]" } /^\+\[V\] / { newver=$2 if ( oldver ) - print "Updated " pkg " (" oldver " -> " newver ")" + print "[" pkg "] Updated (" oldver " -> " newver ")" else { - print "Added " pkg " (" newver ")" info + print "[" pkg "] Added " pkg " " newver " - " info } oldver="" ; newver="" ; info="" }