We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5586c9 commit d8a90e5Copy full SHA for d8a90e5
1 file changed
prt.py
@@ -93,7 +93,7 @@
93
SSH_HOST_RE = re.compile(r'ssh +([^@]+)@([^ ]+)')
94
95
__author__ = "Weston Nielson <wnielson@github>"
96
-__version__ = "0.3.3"
+__version__ = "0.3.4"
97
98
99
def get_config():
@@ -237,7 +237,7 @@ def overwrite_transcoder_after_upgrade():
237
def build_env(host=None):
238
# TODO: This really should be done in a way that is specific to the target
239
# in the case that the target is a different architecture than the host
240
- envs = ["export %s=%s" % (k, v) for k,v in os.environ.items()]
+ envs = ["export %s=%s" % (k, pipes.quote(v)) for k,v in os.environ.items()]
241
envs.append("export PRT_ID=%s" % uuid.uuid1().hex)
242
return ";".join(envs)
243
0 commit comments