From 2218910fbd1799849bb4dc18daee8041fa444a17 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sat, 6 Apr 2019 22:04:20 -0500 Subject: [PATCH] OS X UI upgrade --- electron.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electron.js b/electron.js index 1b87945..faf0556 100644 --- a/electron.js +++ b/electron.js @@ -638,7 +638,7 @@ ipcMain.on(Constants.IPC_Install_Upgrade, (event, data) => { }); } else if (data.Source.toLocaleLowerCase().endsWith('.dmg')) { helpers - .executeAsync('hdiutil', ['attach', data.Source]) + .executeAsync('open', ['-a', 'Finder', data.Source]) .then(() => { closeApplication(); })