diff options
author | Anil Madhavapeddy <avsm@php.net> | 2003-02-16 01:31:46 +0000 |
---|---|---|
committer | Anil Madhavapeddy <avsm@php.net> | 2003-02-16 01:31:46 +0000 |
commit | ee3e64267c030bb7cca73edb04c059a56db19d96 (patch) | |
tree | ac3b430138ec08ef196f659f0c92c6553827a642 /pear | |
parent | d4fd1c07b1dfac42061d96c3a7aae9f0b91d218d (diff) | |
download | php-git-ee3e64267c030bb7cca73edb04c059a56db19d96.tar.gz |
fix error msg typo
Diffstat (limited to 'pear')
-rw-r--r-- | pear/PEAR/Command/Package.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pear/PEAR/Command/Package.php b/pear/PEAR/Command/Package.php index cba77138de..0391f6e6dd 100644 --- a/pear/PEAR/Command/Package.php +++ b/pear/PEAR/Command/Package.php @@ -453,7 +453,7 @@ Wrote: /usr/src/redhat/RPMS/i386/PEAR::Net_Socket-1.0-1.i386.rpm if (!file_exists($run_tests)) { $run_tests = PEAR_INSTALL_DIR . DIRECTORY_SEPARATOR . 'run-tests.php'; if (!file_exists($run_tests)) { - return $this->raiseError("No `run-test.php' file found"); + return $this->raiseError("No `run-tests.php' file found"); } } $plist = implode(" ", $params); @@ -664,4 +664,4 @@ Wrote: /usr/src/redhat/RPMS/i386/PEAR::Net_Socket-1.0-1.i386.rpm // }}} } -?>
\ No newline at end of file +?> |