From df3f884adab3472db5bf529ed413bb390f11c962 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 23 Sep 2014 13:09:22 -0700 Subject: [PATCH] Resolve build and install directory paths Closes #3600 --- build/Gruntfile.coffee | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/Gruntfile.coffee b/build/Gruntfile.coffee index aedb8c179..46be02c7a 100644 --- a/build/Gruntfile.coffee +++ b/build/Gruntfile.coffee @@ -62,6 +62,9 @@ module.exports = (grunt) -> installDir ?= process.env.INSTALL_PREFIX ? '/usr/local' killCommand ='pkill -9 atom' + buildDir = path.resolve(buildDir) + installDir = path.resolve(installDir) + coffeeConfig = glob_to_multiple: expand: true