summary refs log tree commit diff stats
path: root/tools/vccexe
diff options
context:
space:
mode:
authorMiran <narimiran@disroot.org>2019-02-19 17:25:03 +0100
committerAndreas Rumpf <rumpf_a@web.de>2019-02-19 17:25:03 +0100
commit50d1a46537d952bd3684bf752897f707456b0c3d (patch)
tree5a8a81a891cd9c5b9a0d940000ecddda8ff01b1a /tools/vccexe
parente4a76c6ebf76170b3d3950c0ae0bb4d1e51689f2 (diff)
downloadNim-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.nim2
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)