Browse Source

Check for history file errors as well

pull/2127/head
Daniel Nagy 4 years ago
parent
commit
7ce3bee0c0
No known key found for this signature in database GPG Key ID: 1B8E8DCB576FB671
  1. 6
      weed/shell/shell_liner.go

6
weed/shell/shell_liner.go

@ -148,9 +148,11 @@ func loadHistory() {
func saveHistory() {
if f, err := os.Create(historyPath); err != nil {
fmt.Printf("Error writing history file: %v\n", err)
fmt.Printf("Error creating history file: %v\n", err)
} else {
line.WriteHistory(f)
if _, err = line.WriteHistory(f); err != nil {
fmt.Printf("Error writing history file: %v\n", err)
}
f.Close()
}
}
Loading…
Cancel
Save