From e96376121dd1bdbee86384b147106e712d6213fa Mon Sep 17 00:00:00 2001 From: Dean Brettle Date: Wed, 22 Apr 2015 00:55:17 -0700 Subject: [PATCH] Fix issue #6466 by using full path to atom --- build/tasks/mkrpm-task.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tasks/mkrpm-task.coffee b/build/tasks/mkrpm-task.coffee index 8436fea7a..5744343a5 100644 --- a/build/tasks/mkrpm-task.coffee +++ b/build/tasks/mkrpm-task.coffee @@ -33,7 +33,7 @@ module.exports = (grunt) -> installDir = grunt.config.get('atom.installDir') shareDir = path.join(installDir, 'share', 'atom') iconName = 'atom' - executable = 'atom' + executable = path.join(shareDir, 'atom') data = {name, version, description, installDir, iconName, executable} specFilePath = fillTemplate(path.join('resources', 'linux', 'redhat', 'atom.spec'), data)