mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 21:17:47 +03:00
chore: solve license conflict against tun2socks
This commit is contained in:
parent
80b0c87654
commit
720b97da67
7 changed files with 131 additions and 47 deletions
|
@ -65,6 +65,12 @@ var rootCmd = &cobra.Command{
|
|||
})
|
||||
}
|
||||
|
||||
// license
|
||||
if viper.GetBool("license") {
|
||||
fmt.Printf("%s\n", license)
|
||||
os.Exit(0)
|
||||
}
|
||||
|
||||
// check update
|
||||
if !viper.GetBool("no-check") {
|
||||
go checkUpdate()
|
||||
|
@ -154,6 +160,7 @@ func init() {
|
|||
rootCmd.PersistentFlags().String("log-timestamp", time.RFC3339, "log timestamp format")
|
||||
rootCmd.PersistentFlags().String("log-format", "txt", "log output format(txt/json)")
|
||||
rootCmd.PersistentFlags().Bool("no-check", false, "disable update check")
|
||||
rootCmd.PersistentFlags().Bool("license", false, "show license and exit")
|
||||
|
||||
// add to root cmd
|
||||
rootCmd.AddCommand(clientCmd, serverCmd, completionCmd)
|
||||
|
@ -165,6 +172,7 @@ func init() {
|
|||
_ = viper.BindPFlag("log-timestamp", rootCmd.PersistentFlags().Lookup("log-timestamp"))
|
||||
_ = viper.BindPFlag("log-format", rootCmd.PersistentFlags().Lookup("log-format"))
|
||||
_ = viper.BindPFlag("no-check", rootCmd.PersistentFlags().Lookup("no-check"))
|
||||
_ = viper.BindPFlag("license", rootCmd.PersistentFlags().Lookup("license"))
|
||||
|
||||
// bind env
|
||||
_ = viper.BindEnv("config", "HYSTERIA_CONFIG")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue