diff options
-rw-r--r-- | finish.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/finish.nim b/finish.nim index 34580e171..79f6dbd49 100644 --- a/finish.nim +++ b/finish.nim @@ -122,14 +122,14 @@ proc main() = echo "bin/nim.exe is already in your PATH [Skipping]" else: if askBool("nim.exe is not in your PATH environment variable.\n" & - " Should it be added permanently? (y/n) "): + "Should it be added permanently? (y/n) "): addToPathEnv(desiredPath) if mingWchoices.len == 0: # No mingw in path, so try a few locations: let alternative = tryDirs("dist/mingw", "../mingw", r"C:\mingw") if alternative.len == 0: echo "No MingW found in PATH and no candidate found " & - " in the standard locations [Error]" + "in the standard locations [Error]" else: if askBool("Found a MingW directory that is not in your PATH.\n" & alternative & |