diff --git a/src/nimblepkg/nimenv.nim b/src/nimblepkg/nimenv.nim index 3e7cf8b1..7ae4135e 100644 --- a/src/nimblepkg/nimenv.nim +++ b/src/nimblepkg/nimenv.nim @@ -16,9 +16,9 @@ const ActivationFile = proc infoAboutActivation(nimDest, nimVersion: string) = when defined(windows): - display("Info", nimDest, "installed; activate with 'nim-" & nimVersion & "\\activate.bat'") + display("Info", nimDest & "installed; activate with 'nim-" & nimVersion & "activate.bat'") else: - display("Info", nimDest, "installed; activate with 'source nim-" & nimVersion & "/activate.sh'") + display("Info", nimDest & "installed; activate with 'source nim-" & nimVersion & "activate.sh'") proc compileNim*(options: Options, nimDest: string, v: VersionRange) = let keepCsources = options.useSatSolver #SAT Solver has a cache instead of a temp dir for downloads