diff options
author | Marcus Boerger <helly@php.net> | 2005-12-18 15:47:07 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-12-18 15:47:07 +0000 |
commit | 86ecf121e5125d64fa92aa97dc6b9a1da9cd0596 (patch) | |
tree | 03211fae6804e768f71cd5266fe23724d8508d93 | |
parent | b1264f7172734c2a7d3fade8c76d5c74a9093bf8 (diff) | |
download | php-git-86ecf121e5125d64fa92aa97dc6b9a1da9cd0596.tar.gz |
- MFH Fix --version
-rwxr-xr-x | run-tests.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php index 6408500bae..ab18f0d8f8 100755 --- a/run-tests.php +++ b/run-tests.php @@ -333,7 +333,7 @@ if (isset($argc) && $argc > 1) { $html_output = is_resource($html_file); break; case '--version': - echo "$Revision$\n"; + echo '$Revision$'."\n"; exit(1); default: echo "Illegal switch '$switch' specified!\n"; |