c2json: Fix TypeError on MSYS2 (#10709)

master
Ryan 2020-10-23 12:21:32 +11:00 committed by GitHub
parent 168ce1a743
commit f9bd9d3b26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -79,7 +79,8 @@ def run(command, *args, **kwargs):
raise TypeError('`command` must be a non-text sequence such as list or tuple.')
if 'windows' in platform_id:
safecmd = map(shlex.quote, command)
safecmd = map(str, command)
safecmd = map(shlex.quote, safecmd)
safecmd = ' '.join(safecmd)
command = [os.environ['SHELL'], '-c', safecmd]