You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Flag parameters are enabled/disabled by either being present or not. That is, flag types default to --<PARAMETER_NAME> when set to true. When set to false, nothing is passed.
If I want to pass a flag with the value false, I will need to use a special version of the pass-as property:
pass-true-as: --<PARAMETER_NAME>=true
pass-false-as: --<PARAMETER_NAME>=false
But as the true/false dichotomy is a natural interpretation of flags, we should consider supporting these values for flags out of the box (without asking people to use any special pass-true or pass-false syntax).
The text was updated successfully, but these errors were encountered:
Flag parameters are enabled/disabled by either being present or not. That is, flag types default to
--<PARAMETER_NAME>
when set to true. When set to false, nothing is passed.If I want to pass a flag with the value
false
, I will need to use a special version of the pass-as property:pass-true-as: --<PARAMETER_NAME>=true
pass-false-as: --<PARAMETER_NAME>=false
But as the true/false dichotomy is a natural interpretation of flags, we should consider supporting these values for flags out of the box (without asking people to use any special
pass-true
orpass-false
syntax).The text was updated successfully, but these errors were encountered: