Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgomez committed Jul 3, 2024
1 parent 3eddde6 commit 06cbbb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nimblepkg/nimenv.nim
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 06cbbb8

Please sign in to comment.