summaryrefslogtreecommitdiffstats
path: root/TOOLS/osxbundle.py
diff options
context:
space:
mode:
Diffstat (limited to 'TOOLS/osxbundle.py')
-rwxr-xr-xTOOLS/osxbundle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/TOOLS/osxbundle.py b/TOOLS/osxbundle.py
index ba0efd9e7e..49a0a98e53 100755
--- a/TOOLS/osxbundle.py
+++ b/TOOLS/osxbundle.py
@@ -7,7 +7,7 @@ import fileinput
from optparse import OptionParser
def sh(command):
- return os.popen(command).read()
+ return os.popen(command).read().strip()
def bundle_path(binary_name):
return "%s.app" % binary_name
@@ -80,7 +80,7 @@ def main():
if options.deps:
print("> bundling dependencies")
- sh(" ".join(["TOOLS/dylib-unhell.py", target_binary(binary_name)]))
+ print(sh(" ".join(["TOOLS/dylib-unhell.py", target_binary(binary_name)])))
print("done.")