We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1ece99 commit 5c1505fCopy full SHA for 5c1505f
commitizen/cmd.py
@@ -33,7 +33,7 @@ def run(cmd: str, env=None) -> Command:
33
env = {**os.environ, **env}
34
process = subprocess.Popen(
35
cmd,
36
- shell=True,
+ shell=False if os.name == 'nt' else True,
37
stdout=subprocess.PIPE,
38
stderr=subprocess.PIPE,
39
stdin=subprocess.PIPE,
0 commit comments