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

Improved CLI's flags and changed help page #341

Merged
merged 2 commits into from
Aug 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion interfacer/src/browsh/browsh.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,20 @@ func MainEntry() {
}
viper.SetDefault("validURL", validURL)
Initialise()
if viper.GetBool("version") {

// Print version if asked and exit
if (viper.GetBool("version") || viper.GetBool("v")) {
println(browshVersion)
os.Exit(0)
}

// Print name if asked and exit
if (viper.GetBool("name") || viper.GetBool("n")) {
println("Browsh")
os.Exit(0)
}

// Decide whether to run in http-server-mode or CLI app
if viper.GetBool("http-server-mode") {
HTTPServerStart()
} else {
Expand Down
1 change: 1 addition & 0 deletions interfacer/src/browsh/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ var (
_ = pflag.Bool("firefox.with-gui", false, "Don't use headless Firefox")
_ = pflag.Bool("firefox.use-existing", false, "Whether Browsh should launch Firefox or not")
_ = pflag.Bool("monochrome", false, "Start browsh in monochrome mode")
_ = pflag.Bool("name", false, "Print out the name: Browsh")
)

func getConfigNamespace() string {
Expand Down