From 61ca2fffa95eb3e16693b2f654d80ba58b1138e5 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Fri, 1 Mar 2024 13:47:28 -0500 Subject: [PATCH] Fix initial entry reader shortcut on Windows --- src/cli/entryList.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/entryList.go b/src/cli/entryList.go index 8ed0f63..e7d04d5 100644 --- a/src/cli/entryList.go +++ b/src/cli/entryList.go @@ -95,7 +95,7 @@ func EntryListGen() { dirList = append(dirList, "") } else { // otherwise, print the source of the error - fmt.Print("\n\n" + offline.AnsiError + "An unexpected error occurred while generating the entry list: " + err.Error() + offline.AnsiReset) + fmt.Println(offline.AnsiError + "An unexpected error occurred while generating the entry list: " + err.Error() + offline.AnsiReset) } // quit walking EntryRoot and return nil to allow the program to continue return nil