diff --git a/main.go b/main.go index 7f2bbb0..36414d2 100644 --- a/main.go +++ b/main.go @@ -12,13 +12,13 @@ import ( func main() { fileBytes, err := os.ReadFile("./imgsLocation.txt") if err != nil { - fmt.Printf("Error loading dir info from ./imgsLocation.txt: %v\nPress any key to continue...", err) + fmt.Printf("Error loading dir info from ./imgsLocation.txt: %v\nPress to continue...", err) fmt.Scanln() os.Exit(1) } files, err := os.ReadDir(string(fileBytes)) if err != nil { - fmt.Printf("Error reading images from directory %v: %v\nPress any key to continue...", string(fileBytes), err) + fmt.Printf("Error reading images from directory %v: %v\nPress to continue...", string(fileBytes), err) fmt.Scanln() os.Exit(1) }