diff options
author | Tomas V.V.Cox <cox@php.net> | 2002-03-23 17:44:48 +0000 |
---|---|---|
committer | Tomas V.V.Cox <cox@php.net> | 2002-03-23 17:44:48 +0000 |
commit | fdce319634a4649e79ca08544af018cc482a96d4 (patch) | |
tree | 852051a76de137d24b254a02f3d2515a6cdaf2aa | |
parent | 8ea91258407e3d439b1087fc74ea612d7deed69f (diff) | |
download | php-git-fdce319634a4649e79ca08544af018cc482a96d4.tar.gz |
Oops, forgot the break;
-rw-r--r-- | pear/PEAR/Command/Package.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pear/PEAR/Command/Package.php b/pear/PEAR/Command/Package.php index 5ee224eae3..563aa5f0d0 100644 --- a/pear/PEAR/Command/Package.php +++ b/pear/PEAR/Command/Package.php @@ -94,8 +94,7 @@ class PEAR_Command_Package extends PEAR_Command_Common } switch ($att['role']) { case 'test': - continue 2; - $dest = '-- will not be installed --'; + $dest = '-- will not be installed --'; break; case 'doc': $dest = $this->config->get('doc_dir') . DIRECTORY_SEPARATOR . $dest; |