We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c03908f commit b9e1862Copy full SHA for b9e1862
quickpkg
@@ -95,7 +95,7 @@ def attachdmg(dmgpath):
95
return volpaths
96
else:
97
print "error getting hdiutil info"
98
- print "(%d, %s)" % (result["returncode"], result["stderr"])
+ print "(%d, %s)" % (info_result["returncode"], info_result["stderr"])
99
cleanup_and_exit(1)
100
101
attachcmd = ["/usr/bin/hdiutil",
@@ -202,7 +202,7 @@ if __name__ == "__main__":
202
if item_path.startswith('~'):
203
item_path = os.path.expanduser(item_path)
204
item_path = os.path.abspath(item_path)
205
-
+
206
# get file extension
207
(item_basename, item_extension) = os.path.splitext(item_path)
208
item_extension = string.lstrip(item_extension, '.')
0 commit comments