From c1ebbf36be2642cb8e7bda01f65e544ca55815db Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 4 Jun 2014 09:52:20 -0700 Subject: [PATCH] Add missing l to global --- src/browser/main.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/main.coffee b/src/browser/main.coffee index 098a0a95d..37cdcdb01 100644 --- a/src/browser/main.coffee +++ b/src/browser/main.coffee @@ -56,7 +56,7 @@ start = -> global.devResourcePath = process.env.ATOM_DEV_RESOURCE_PATH ? path.join(app.getHomeDir(), 'github', 'atom') # Normalize to make sure drive letter case is consistent on Windows -globa.devResourcePath = path.normalize(global.devResourcePath) if global.devResourcePath +global.devResourcePath = path.normalize(global.devResourcePath) if global.devResourcePath setupCrashReporter = -> crashReporter.start(productName: 'Atom', companyName: 'GitHub')