aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2018-10-25 15:45:13 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2018-10-25 15:45:21 +0200
commit754a00d55f30f6112a1b68cb0bec5d59565096d1 (patch)
tree27563a4c707492724976c688a668ca40d283b198
parent613fc95ee4ead5962e960137e694aec5888e2680 (diff)
parent43719e0a3411e6a08e04908332cb44adfa00c6a2 (diff)
downloadbitcoin-754a00d55f30f6112a1b68cb0bec5d59565096d1.tar.xz
Merge #14416: Fix OSX dmg issue (10.12 to 10.14)
43719e0a3411e6a08e04908332cb44adfa00c6a2 [macOS] Remove DS_Store WindowBounds bytes object (Jonas Schnelli) Pull request description: This seems to fix the macOS 10.12+ DMG issue in conjunction with Gitian on Bionic Tree-SHA512: 3cdad7aaebed2eb320015e2053954444b28802a60505225d7f6affdd83c523de8738ecb53a48ba8c30266315716e3782c681208e6e547e94adcac39797139247
-rwxr-xr-xcontrib/macdeploy/custom_dsstore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/macdeploy/custom_dsstore.py b/contrib/macdeploy/custom_dsstore.py
index 6fa134972a..c29f83a91e 100755
--- a/contrib/macdeploy/custom_dsstore.py
+++ b/contrib/macdeploy/custom_dsstore.py
@@ -13,7 +13,7 @@ package_name_ns = sys.argv[2]
ds = DSStore.open(output_file, 'w+')
ds['.']['bwsp'] = {
'ShowStatusBar': False,
- 'WindowBounds': b'{{300, 280}, {500, 343}}',
+ 'WindowBounds': '{{300, 280}, {500, 343}}',
'ContainerShowSidebar': False,
'SidebarWidth': 0,
'ShowTabView': False,