summaryrefslogtreecommitdiff
path: root/Admin/update-changelog
diff options
context:
space:
mode:
Diffstat (limited to 'Admin/update-changelog')
-rwxr-xr-xAdmin/update-changelog6
1 files changed, 3 insertions, 3 deletions
diff --git a/Admin/update-changelog b/Admin/update-changelog
index af9158760..0fcca7469 100755
--- a/Admin/update-changelog
+++ b/Admin/update-changelog
@@ -35,12 +35,12 @@ email=$3
for file in `find . -name "ChangeLog"`; do
test $file = "./gnulib/ChangeLog" \
|| test $file = "./gettext-tools/examples/hello-c++-kde/admin/ChangeLog" \
- || { date=`date -u +%Y-%m-%d`;
- cat <<EOF
+ || { { date=`date -u +%Y-%m-%d`;
+ cat <<EOF
$date $user <$email>
* gettext $ver released.
EOF
- cat $file; } > $file.tmp && mv $file.tmp $file
+ cat $file; } > $file.tmp && mv $file.tmp $file; }
done