Skip to content

Commit

Permalink
Fix launching PowerShell on UNC paths
Browse files Browse the repository at this point in the history
  • Loading branch information
socram8888 committed Dec 3, 2024
1 parent 1dc28bd commit d9ad3dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipenv/shells.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def _handover(cmd, args):
if os.name != "nt":
os.execvp(cmd, args)
else:
sys.exit(subprocess.call(args, shell=True, universal_newlines=True))
sys.exit(subprocess.call(args, universal_newlines=True))


class Shell:
Expand Down

0 comments on commit d9ad3dd

Please sign in to comment.