diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-11-20 12:58:17 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-11-20 12:58:17 +0100 |
| commit | d0d369e34fa1767889ec817315e909c2db081ad9 (patch) | |
| tree | 44583209b0564a39f3c17a1a0dc2c01141a48c40 | |
| parent | 02b8f1135e0536f87fbc1a68a00fb8201dc5fced (diff) | |
Looks like we need shell=True on Windows to do things like run\tests
| -rwxr-xr-x | cdist | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -257,7 +257,7 @@ def rmtree(a): def command(c): log_normal(c) try: - r = subprocess.run(shlex.split(c)) + r = subprocess.run(shlex.split(c), shell=True) if r.returncode != 0: raise Error(f'command {c} failed ({r.returncode})') except Exception as e: |
