summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2011-08-05 20:59:03 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2011-08-05 20:59:03 +0200
commita3345817c8806193742307561787d74117f4b35f (patch)
treed12f0a434f77c53576dbacd1728e4d9bb9d710b6 /lib
parent144628d7033cdb098cf77fb94fb5204286adf10e (diff)
downloadautomake-a3345817c8806193742307561787d74117f4b35f.tar.gz
tap: fix typo in TAP driver version message
* lib/tap-driver (anonymous subroutine printing the script version message): Add missing trailing newline to the version message.
Diffstat (limited to 'lib')
-rwxr-xr-xlib/tap-driver2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tap-driver b/lib/tap-driver
index c748c5c4c..91edd1e05 100755
--- a/lib/tap-driver
+++ b/lib/tap-driver
@@ -68,7 +68,7 @@ my $diag_string = "#";
Getopt::Long::GetOptions (
'help' => sub { print $HELP; exit 0; },
- 'version' => sub { print "$ME $VERSION"; exit 0; },
+ 'version' => sub { print "$ME $VERSION\n"; exit 0; },
'test-name=s' => \$test_script_name,
'log-file=s' => \$log_file,
'trs-file=s' => \$trs_file,