Revert "build_release: Use -quiet for hdiutil"
This reverts commit e2ea04691e
.
Otherwise we don't get any information on errors...
This commit is contained in:
parent
e2ea04691e
commit
901ccebca6
@ -106,14 +106,14 @@ def build_osx():
|
|||||||
|
|
||||||
utils.print_title("Running smoke test")
|
utils.print_title("Running smoke test")
|
||||||
with tempfile.TemporaryDirectory() as tmpdir:
|
with tempfile.TemporaryDirectory() as tmpdir:
|
||||||
subprocess.check_call(['hdiutil', 'attach', '-quiet',
|
subprocess.check_call(['hdiutil', 'attach', 'qutebrowser.dmg',
|
||||||
'qutebrowser.dmg', '-mountpoint', tmpdir])
|
'-mountpoint', tmpdir])
|
||||||
try:
|
try:
|
||||||
binary = os.path.join(tmpdir, 'qutebrowser.app', 'Contents',
|
binary = os.path.join(tmpdir, 'qutebrowser.app', 'Contents',
|
||||||
'MacOS', 'qutebrowser')
|
'MacOS', 'qutebrowser')
|
||||||
subprocess.check_call([binary])
|
subprocess.check_call([binary])
|
||||||
finally:
|
finally:
|
||||||
subprocess.check_call(['hdiutil', 'detach', '-quiet', tmpdir])
|
subprocess.check_call(['hdiutil', 'detach', tmpdir])
|
||||||
|
|
||||||
|
|
||||||
def build_windows():
|
def build_windows():
|
||||||
|
Loading…
Reference in New Issue
Block a user