From 5d2b5c1c81f4e018b5b49faa047db025da98e4a6 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Mon, 4 Apr 2016 17:58:59 -0700 Subject: [PATCH] OS X: Name update file with "-darwin.zip" --- bin/package.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/package.js b/bin/package.js index 52cb0db7..e135c36e 100755 --- a/bin/package.js +++ b/bin/package.js @@ -211,7 +211,7 @@ function buildDarwin (cb) { if (err) return cb(err) // Create .zip file (used by the auto-updater) - var zipPath = path.join(config.ROOT_PATH, 'dist', BUILD_NAME + '.zip') + var zipPath = path.join(config.ROOT_PATH, 'dist', BUILD_NAME + '-darwin.zip') cp.execSync(`cd ${buildPath[0]} && zip -r -y ${zipPath} ${config.APP_NAME + '.app'}`) console.log('Created OS X .zip file.')