From f1396457fb01ab9d83c07e07d3771ebf9520e0c8 Mon Sep 17 00:00:00 2001 From: Min RK Date: Thu, 20 Aug 2015 16:40:42 -0700 Subject: [PATCH] run commands with shell=True appears to be needed on Windows, and should be harmless elsewhere. --- setupbase.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setupbase.py b/setupbase.py index 50f0489a2..4ff60d041 100644 --- a/setupbase.py +++ b/setupbase.py @@ -297,6 +297,7 @@ def mtime(path): def run(cmd, *args, **kwargs): """Echo a command before running it""" log.info(" ".join(cmd)) + kwargs.setdefault('shell', True) return check_call(cmd, *args, **kwargs)