From b27b2041b42e3accf3405c31e8fd5dc694ed9609 Mon Sep 17 00:00:00 2001 From: Gordon Hall Date: Fri, 6 Jun 2014 14:30:07 -0400 Subject: [PATCH] fix linux npm run 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 e8dd70c5f..b618c3297 100644 --- a/shell/scripts/launch.js +++ b/shell/scripts/launch.js @@ -11,7 +11,7 @@ var spawn = require('child_process').spawn; // update execPath with platform specific binary locations switch (process.platform) { case 'linux': - execPath += '/atom-shell/atom'; + execPath += '/atom'; break; case 'darwin': execPath += '/Atom.app/Contents/MacOS/Atom';