summaryrefslogtreecommitdiff
path: root/indra/lib/python
diff options
context:
space:
mode:
authorcallum_linden <callum@lindenlab.com>2017-12-14 15:04:09 -0800
committercallum_linden <callum@lindenlab.com>2017-12-14 15:04:09 -0800
commitfa197bf29a83096d759aa724361ed127af5d7e6c (patch)
tree3581e2f64298d3f20ec46eba9d59f47d984cc333 /indra/lib/python
parentdd0d2805e2b495246525f49325c4492b7b57f157 (diff)
parentdf21b99723cf9e215160ef6601b2ba42e23b786d (diff)
Automated merge with tip of lindenlab/viewer64
Diffstat (limited to 'indra/lib/python')
-rwxr-xr-xindra/lib/python/indra/util/llmanifest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/lib/python/indra/util/llmanifest.py b/indra/lib/python/indra/util/llmanifest.py
index 7050ce43b7..598261e3d7 100755
--- a/indra/lib/python/indra/util/llmanifest.py
+++ b/indra/lib/python/indra/util/llmanifest.py
@@ -529,7 +529,7 @@ class LLManifest(object):
print "Running command:", command
sys.stdout.flush()
try:
- subprocess.check_call(command, shell=True)
+ subprocess.check_call(command)
except subprocess.CalledProcessError as err:
raise ManifestError( "Command %s returned non-zero status (%s)"
% (command, err.returncode) )
@@ -545,6 +545,7 @@ class LLManifest(object):
def put_in_file(self, contents, dst, src=None):
# write contents as dst
dst_path = self.dst_path_of(dst)
+ self.cmakedirs(os.path.dirname(dst_path))
f = open(dst_path, "wb")
try:
f.write(contents)