mirror of
https://github.com/octoleo/syncthing.git
synced 2024-12-22 19:08:58 +00:00
cmd/syncthing: Correct --paths in some cases (#4845)
This commit is contained in:
parent
4aaf8d4ceb
commit
1ff5fc9620
@ -383,7 +383,7 @@ func main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if options.showPaths {
|
if options.showPaths {
|
||||||
showPaths()
|
showPaths(options)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1318,13 +1318,13 @@ func checkShortIDs(cfg *config.Wrapper) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func showPaths() {
|
func showPaths(options RuntimeOptions) {
|
||||||
fmt.Printf("Configuration file:\n\t%s\n\n", locations[locConfigFile])
|
fmt.Printf("Configuration file:\n\t%s\n\n", locations[locConfigFile])
|
||||||
fmt.Printf("Database directory:\n\t%s\n\n", locations[locDatabase])
|
fmt.Printf("Database directory:\n\t%s\n\n", locations[locDatabase])
|
||||||
fmt.Printf("Device private key & certificate files:\n\t%s\n\t%s\n\n", locations[locKeyFile], locations[locCertFile])
|
fmt.Printf("Device private key & certificate files:\n\t%s\n\t%s\n\n", locations[locKeyFile], locations[locCertFile])
|
||||||
fmt.Printf("HTTPS private key & certificate files:\n\t%s\n\t%s\n\n", locations[locHTTPSKeyFile], locations[locHTTPSCertFile])
|
fmt.Printf("HTTPS private key & certificate files:\n\t%s\n\t%s\n\n", locations[locHTTPSKeyFile], locations[locHTTPSCertFile])
|
||||||
fmt.Printf("Log file:\n\t%s\n\n", locations[locLogFile])
|
fmt.Printf("Log file:\n\t%s\n\n", options.logFile)
|
||||||
fmt.Printf("GUI override directory:\n\t%s\n\n", locations[locGUIAssets])
|
fmt.Printf("GUI override directory:\n\t%s\n\n", options.assetDir)
|
||||||
fmt.Printf("Default sync folder directory:\n\t%s\n\n", locations[locDefFolder])
|
fmt.Printf("Default sync folder directory:\n\t%s\n\n", locations[locDefFolder])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user