cmd/syncthing: Correct --paths in some cases (#4845)

This commit is contained in:
Audrius Butkevicius 2018-03-28 18:02:43 +01:00 committed by GitHub
parent 4aaf8d4ceb
commit 1ff5fc9620
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -383,7 +383,7 @@ func main() {
}
if options.showPaths {
showPaths()
showPaths(options)
return
}
@ -1318,13 +1318,13 @@ func checkShortIDs(cfg *config.Wrapper) error {
return nil
}
func showPaths() {
func showPaths(options RuntimeOptions) {
fmt.Printf("Configuration file:\n\t%s\n\n", locations[locConfigFile])
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("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("GUI override directory:\n\t%s\n\n", locations[locGUIAssets])
fmt.Printf("Log file:\n\t%s\n\n", options.logFile)
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])
}