Skip to content

Commit

Permalink
Added Popen shell=True, to test Travis CI failure
Browse files Browse the repository at this point in the history
  • Loading branch information
gtalarico committed May 12, 2018
1 parent 9fc6659 commit 80aea53
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pipenv_pipes/pipenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ def PipedPopen(cmds, **kwargs):
timeout = kwargs.pop('timeout', None)
env = kwargs.pop('env', dict(os.environ))
proc = Popen(
cmds,
' '.join(cmds),
stdout=PIPE,
stderr=PIPE,
universal_newlines=True,
env=env,
shell=True,
**kwargs
)
out, err = proc.communicate(timeout=timeout)
Expand Down

0 comments on commit 80aea53

Please sign in to comment.