Add newline to postpush script

This commit is contained in:
David Brown 2016-06-26 17:12:47 +01:00
parent a5a8809b91
commit 44889a1b2f

View file

@ -27,5 +27,5 @@ print header(),
open(LOG, ">>/tmp/postpush.log") or die "Could not create postpush.log";
flock(LOG, 2) or die "Could not lock postpush.log";
printf LOG "Repository $repo, branch $branch, name $name.";
printf LOG "Repository $repo, branch $branch, name $name.\n";
close(LOG);