Skip to content
Open
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
6 changes: 3 additions & 3 deletions bin/phoenix_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,9 @@ def shell_quote(args):
import subprocess
return subprocess.list2cmdline(args)
else:
# pipes module isn't available on Windows
import pipes
return " ".join([pipes.quote(tryDecode(v)) for v in args])
# *nix
import shlex
return " ".join([shlex.quote(tryDecode(v)) for v in args])


def __set_java_home():
Expand Down