Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2010-12-06 15:46:49 +0300
committerBert Belder <bertbelder@gmail.com>2010-12-21 01:51:32 +0300
commitd1bf9cf1f8e2d6f44b71e11accfb4c939e60513c (patch)
treee41f61b0a7a84fc1d00a5f596817e8a92086cbc4 /wscript
parent0a2f1cb334e1633f0687bbd3442d433599dc08b0 (diff)
After building overwrite existing ./node(_g)?.exe
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index 30cae1be5bd..3b2d7487797 100644
--- a/wscript
+++ b/wscript
@@ -725,9 +725,9 @@ def shutdown():
elif not Options.commands['clean']:
if sys.platform.startswith("win32"):
- if os.path.exists('build/default/node.exe') and not os.path.exists('node.exe'):
+ if os.path.exists('build/default/node.exe'):
os.system('cp build/default/node.exe .')
- if os.path.exists('build/debug/node_g.exe') and not os.path.exists('node_g.exe'):
+ if os.path.exists('build/debug/node_g.exe'):
os.system('cp build/debug/node_g.exe .')
else:
if os.path.exists('build/default/node') and not os.path.exists('node'):