diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-09-29 00:32:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-29 09:32:39 +0200 |
commit | f061971a9be5222f0f158f605220f3bda42f7488 (patch) | |
tree | f68d36d7e02b4b81055abef8437580247c401154 /lib/pure/os.nim | |
parent | 08cf4cb1e58fad35be3846e98a308500ac2cfdb0 (diff) | |
download | Nim-f061971a9be5222f0f158f605220f3bda42f7488.tar.gz |
envPairs works in vm, nims (#18615)
* envPairs works in vm, nims * fixup
Diffstat (limited to 'lib/pure/os.nim')
-rw-r--r-- | lib/pure/os.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/pure/os.nim b/lib/pure/os.nim index dd1f9f0b6..e3b8e9f1c 100644 --- a/lib/pure/os.nim +++ b/lib/pure/os.nim @@ -871,8 +871,7 @@ proc unixToNativePath*(path: string, drive=""): string {. inc(i) include "includes/oserr" -when not defined(nimscript): - include "includes/osenv" +include "includes/osenv" proc getHomeDir*(): string {.rtl, extern: "nos$1", tags: [ReadEnvEffect, ReadIOEffect].} = |