X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=cdist;h=10bed90f89262b3656d0d6ca844b6516090fad45;hb=1929c5d0df545dddb8e78779b09e9f6c5b25e9f5;hp=516dcadaf34fe742fbc1291c4c76ce43b27884bb;hpb=d0d369e34fa1767889ec817315e909c2db081ad9;p=cdist.git diff --git a/cdist b/cdist index 516dcad..10bed90 100755 --- a/cdist +++ b/cdist @@ -256,8 +256,9 @@ def rmtree(a): def command(c): log_normal(c) + posix = sys.platform != 'win32' try: - r = subprocess.run(shlex.split(c), shell=True) + r = subprocess.run(shlex.split(c, posix=posix), shell=True) if r.returncode != 0: raise Error(f'command {c} failed ({r.returncode})') except Exception as e: