Skip to content

Commit

Permalink
Merge pull request #272 from sch0125/fix-0x9d
Browse files Browse the repository at this point in the history
Fix: UnicodeDecodeError occurs when running gitman update/install in …
  • Loading branch information
jacebrowning committed Feb 23, 2022
2 parents 11349fc + c364e43 commit 7412e52
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gitman/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def call(name, *args, _show=True, _stream=True, _shell=False, _ignore=False):

command = subprocess.Popen( # pylint: disable=subprocess-run-check
name if _shell else [name, *args],
encoding="utf-8",
universal_newlines=True,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
Expand Down

0 comments on commit 7412e52

Please sign in to comment.