From cc4477185f430042a1889c5a69db76d358c8df95 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 18 Sep 2013 09:08:36 -0700 Subject: [PATCH] Resolve bootstrap script to make it absolute --- src/atom-application.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/atom-application.coffee b/src/atom-application.coffee index 569aa6b08..41007a12f 100644 --- a/src/atom-application.coffee +++ b/src/atom-application.coffee @@ -224,7 +224,7 @@ class AtomApplication openedWindow = existingWindow openedWindow.openPath(pathToOpen, initialLine) else - bootstrapScript = 'window-bootstrap' + bootstrapScript = require.resolve('./window-bootstrap') if devMode resourcePath = global.devResourcePath else