From d1814a3c12a9726268757f8c85eda6f70fd12edd Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Sat, 13 Apr 2002 00:23:19 +0000 Subject: [PATCH] * cvstag command: tag slide option is -f, not -F --- pear/PEAR/Command/Package.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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'])) { -- 2.50.1