We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 873b279 commit ad66242Copy full SHA for ad66242
Makefile
@@ -1,4 +1,4 @@
1
-VERSION = 0.2.6
+VERSION = 0.2.7
2
3
publish:
4
git tag $(VERSION)
cmd/root.go
@@ -113,7 +113,5 @@ func initConfig() {
113
viper.SetConfigName(".tunnel")
114
}
115
viper.AutomaticEnv() // Read in environment variables that match
116
- if err := viper.ReadInConfig(); err != nil {
117
- log.Fatalf("Failed to read config: %v", err)
118
- }
+ viper.ReadInConfig()
119
cmd/version.go
@@ -12,7 +12,7 @@ var (
12
Short: "Print the version of Tunnel",
13
// Long: ``,
14
Run: func(cmd *cobra.Command, args []string) {
15
- fmt.Println("0.2.6")
+ fmt.Println("0.2.7")
16
},
17
18
)
0 commit comments