From: Stig Bakken Date: Sat, 13 Apr 2002 00:23:19 +0000 (+0000) Subject: * cvstag command: tag slide option is -f, not -F X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~677 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d1814a3c12a9726268757f8c85eda6f70fd12edd;p=php * cvstag command: tag slide option is -f, not -F --- diff --git a/pear/PEAR/Command/Package.php b/pear/PEAR/Command/Package.php index 4d102bc0fe..40d7e6d0fd 100644 --- a/pear/PEAR/Command/Package.php +++ b/pear/PEAR/Command/Package.php @@ -79,7 +79,7 @@ class PEAR_Command_Package extends PEAR_Command_Common function getOptions() { - return array('Z', 'n' /*, 'f', 'd', 'q', 'Q'*/); + return array('Z', 'n', 'F' /*, 'd', 'q', 'Q'*/); } // }}} @@ -358,8 +358,8 @@ class PEAR_Command_Package extends PEAR_Command_Common } */ $command .= ' tag'; - if (isset($options['f'])) { - $command .= ' -f'; + if (isset($options['F'])) { + $command .= ' -F'; } /* neither will this one: if (isset($options['d'])) {