Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added a default --yes flag to set the tty #3342

Merged
merged 1 commit into from
Mar 27, 2025

Conversation

suryaaprakassh
Copy link
Contributor

fixes #3340

  • created a new boolean flag `--yes' or '-y' in shorthand
  • sets the value of --tty to false if used

Copy link
Member

@jandubois jandubois left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder what should happen if the user specifies contradictory settings, like --tty --yes or --tty=false --yes=false.

You could say a later option should override an earlier one, but I don't know if that can easily be done with Cobra.

An alternative (and I suspect the correct one in this case) would be to throw an error instead of randomly picking one setting over the other.

@AkihiroSuda
Copy link
Member

An alternative (and I suspect the correct one in this case) would be to throw an error instead of randomly picking one setting over the other.

👍 on this

Also, please squash the commits

@suryaaprakassh
Copy link
Contributor Author

suryaaprakassh commented Mar 13, 2025

An alternative (and I suspect the correct one in this case) would be to throw an error instead of randomly picking one setting over the other.

changes have been made to throw an error when both --yes and --tty flag are used simultaneously

if err != nil {
return err
}
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What if --yes=false is explicitly specified?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Setting the value of --yes=false will not induce any effects and it will be neglected. we can just give a warning to user to prevent confusion.

@@ -68,6 +68,7 @@ func newApp() *cobra.Command {
rootCmd.PersistentFlags().Bool("debug", false, "debug mode")
// TODO: "survey" does not support using cygwin terminal on windows yet
rootCmd.PersistentFlags().Bool("tty", isatty.IsTerminal(os.Stdout.Fd()), "Enable TUI interactions such as opening an editor. Defaults to true when stdout is a terminal. Set to false for automation.")
rootCmd.PersistentFlags().BoolP("yes", "y", isatty.IsTerminal(os.Stdout.Fd()), "Alias of --tty=false")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The default value seems conflicting with tty

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The default value of the yes flag is changed to false which should behave as expected now.

Signed-off-by: Surya Prakash <[email protected]>
- created a new boolean flag `--yes'
Signed-off-by: Surya Prakash <[email protected]>

fix: required changes

Signed-off-by: Surya Prakash <[email protected]>

- added intutive help message for the `--yes' flag
- added a check with `cmd.Flags().Changed()`
- changed the variable name from `ttyValue` to `yesValue` for better
  understanding

feat: added a check usage of --yes && --tty

Signed-off-by: Surya Prakash <[email protected]>

fix: removed space from deprecated.md

Fix: default value of the flag
Copy link
Member

@AkihiroSuda AkihiroSuda left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks

@AkihiroSuda AkihiroSuda merged commit 377c1f7 into lima-vm:master Mar 27, 2025
31 checks passed
@AkihiroSuda AkihiroSuda linked an issue Mar 28, 2025 that may be closed by this pull request
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants