From da58bd560990d18f8be2d763b8914f2377f4b413 Mon Sep 17 00:00:00 2001 From: probablycorey Date: Fri, 14 Jun 2013 09:27:47 -0700 Subject: [PATCH] Always use ~/github/atom as the resource path when running specs --- 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 bdb0c4cd2..5551e92c0 100644 --- a/src/atom-application.coffee +++ b/src/atom-application.coffee @@ -261,7 +261,7 @@ class AtomApplication runSpecs: (exitWhenDone) -> specWindow = new AtomWindow bootstrapScript: 'spec-bootstrap' - resourcePath: @resourcePath + resourcePath: path.join(@getHomeDir(), 'github', 'atom') exitWhenDone: exitWhenDone isSpec: true