diff options
author | Miran <narimiran@disroot.org> | 2019-02-19 17:25:03 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-02-19 17:25:03 +0100 |
commit | 50d1a46537d952bd3684bf752897f707456b0c3d (patch) | |
tree | 5a8a81a891cd9c5b9a0d940000ecddda8ff01b1a /tools/vccexe | |
parent | e4a76c6ebf76170b3d3950c0ae0bb4d1e51689f2 (diff) | |
download | Nim-50d1a46537d952bd3684bf752897f707456b0c3d.tar.gz |
better docs: osproc (#10708)
* better docs: osproc * fix a typo in the docs, deprecate "demon"
Diffstat (limited to 'tools/vccexe')
-rw-r--r-- | tools/vccexe/vcvarsall.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/vccexe/vcvarsall.nim b/tools/vccexe/vcvarsall.nim index 81b0fb42b..945fb90a6 100644 --- a/tools/vccexe/vcvarsall.nim +++ b/tools/vccexe/vcvarsall.nim @@ -80,7 +80,7 @@ proc vccVarsAll*(path: string, arch: VccArch = vccarchUnspecified, platform_type # Execute vcvarsall with its command-line arguments # and then execute the SET command to list all environment variables let comSpecExec = "\"$1\" /C \"$2 && SET\"" % [comSpecCmd, vcvarsExec] - var comSpecOpts = {poEvalCommand, poDemon, poStdErrToStdOut} + var comSpecOpts = {poEvalCommand, poDaemon, poStdErrToStdOut} if verbose: comSpecOpts.incl poEchoCmd let comSpecOut = execProcess(comSpecExec, options = comSpecOpts) |