We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2347daf commit 27ceef4Copy full SHA for 27ceef4
1 file changed
bin/mkrelease
@@ -138,6 +138,9 @@ if [ $# -lt $ARGMIN ]; then
138
die "$# arguments found, $ARGMIN required"
139
fi
140
141
+by=$(getent passwd $(whoami) | cut -d ':' -f 5 | tr -d ',')
142
+[ -z "$by" ] && die "Can't determine the real name of the user running this script"
143
+
144
VER=$1
145
146
REPO=$(svn info | grep "^Repository Root:" | awk '{ print $3 }')
@@ -326,7 +329,7 @@ For development, copy the new development version instead:
326
329
327
330
Regards,
328
331
- Henrik
332
+ $by
333
(via the mkrelease script)
334
" > ~/src/db/mail/release-mail-v$VER.txt
335
0 commit comments