From c5a8c8ad34bd318a57660f3002183af06c8d4d26 Mon Sep 17 00:00:00 2001 From: Machiste Quintana Date: Fri, 22 May 2015 22:05:04 -0400 Subject: [PATCH] :bug: Fix application:open-license command --- src/workspace.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/workspace.coffee b/src/workspace.coffee index 0e6fb7e40..0285cf99d 100644 --- a/src/workspace.coffee +++ b/src/workspace.coffee @@ -377,7 +377,7 @@ class Workspace extends Model # Open Atom's license in the active pane. openLicense: -> - @open(join(atom.getLoadSettings().resourcePath, 'LICENSE.md')) + @open(path.join(process.resourcesPath, 'LICENSE.md')) # Synchronously open the given URI in the active pane. **Only use this method # in specs. Calling this in production code will block the UI thread and