diff options
author | callum_linden <callum@lindenlab.com> | 2017-12-14 15:04:09 -0800 |
---|---|---|
committer | callum_linden <callum@lindenlab.com> | 2017-12-14 15:04:09 -0800 |
commit | fa197bf29a83096d759aa724361ed127af5d7e6c (patch) | |
tree | 3581e2f64298d3f20ec46eba9d59f47d984cc333 /indra/lib/python | |
parent | dd0d2805e2b495246525f49325c4492b7b57f157 (diff) | |
parent | df21b99723cf9e215160ef6601b2ba42e23b786d (diff) |
Automated merge with tip of lindenlab/viewer64
Diffstat (limited to 'indra/lib/python')
-rwxr-xr-x | indra/lib/python/indra/util/llmanifest.py | 3 |
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) |