From 54015a4a289102e5b9eee440ba548c3f57a9f021 Mon Sep 17 00:00:00 2001 From: Gordon Hall Date: Mon, 9 Jun 2014 07:10:56 -0700 Subject: [PATCH] fix execPath for win32 copay shell --- shell/scripts/launch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/scripts/launch.js b/shell/scripts/launch.js index b618c3297..d50522674 100644 --- a/shell/scripts/launch.js +++ b/shell/scripts/launch.js @@ -17,7 +17,7 @@ switch (process.platform) { execPath += '/Atom.app/Contents/MacOS/Atom'; break; case 'win32': - execPath += '\\atom-shell\\atom.exe' + execPath += '\\atom.exe' break; default: console.log('Platform not supported.');