mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 23:34:26 +00:00
Fix default config file loading
This commit is contained in:
parent
8e90497c31
commit
25a5bc0b89
@ -106,7 +106,7 @@ func ApplyConfigFile(options *Options, configFilePath string) error {
|
||||
}
|
||||
|
||||
func applyConfigFile(options *Options, filePath string) error {
|
||||
filePath = expandHomeDir(filePath)
|
||||
filePath = ExpandHomeDir(filePath)
|
||||
if _, err := os.Stat(filePath); os.IsNotExist(err) {
|
||||
return err
|
||||
}
|
||||
@ -138,7 +138,7 @@ func applyConfigFile(options *Options, filePath string) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func expandHomeDir(path string) string {
|
||||
func ExpandHomeDir(path string) string {
|
||||
if path[0:2] == "~/" {
|
||||
return os.Getenv("HOME") + path[1:]
|
||||
} else {
|
||||
@ -234,8 +234,8 @@ func (app *App) Run() error {
|
||||
)
|
||||
if app.options.EnableTLS {
|
||||
err = app.server.ListenAndServeTLS(
|
||||
expandHomeDir(app.options.TLSCrtFile),
|
||||
expandHomeDir(app.options.TLSKeyFile),
|
||||
ExpandHomeDir(app.options.TLSCrtFile),
|
||||
ExpandHomeDir(app.options.TLSKeyFile),
|
||||
)
|
||||
} else {
|
||||
err = app.server.ListenAndServe()
|
||||
|
4
main.go
4
main.go
@ -69,7 +69,7 @@ func main() {
|
||||
options := app.DefaultOptions
|
||||
|
||||
configFile := c.String("config")
|
||||
_, err := os.Stat(configFile)
|
||||
_, err := os.Stat(app.ExpandHomeDir(configFile))
|
||||
if configFile != "~/.gotty" || !os.IsNotExist(err) {
|
||||
if err := app.ApplyConfigFile(&options, configFile); err != nil {
|
||||
exit(err, 2)
|
||||
@ -101,7 +101,9 @@ func main() {
|
||||
}
|
||||
|
||||
func exit(err error, code int) {
|
||||
if err != nil {
|
||||
fmt.Println(err)
|
||||
}
|
||||
os.Exit(code)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user