Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/SwiftBuildTool/Inputs/pseudo-swiftc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import argparse
import json
import os
import pipes
import shlex
import sys

def main():
Expand Down Expand Up @@ -47,7 +47,7 @@ def main():

# If run in show commands mode, print some dummy output.
if args.show_commands:
print(' '.join(map(pipes.quote, [
print(' '.join(map(shlex.quote, [
sys.argv[0], "-frontend", "...blablabla..."])))
return

Expand Down