From 2dbbce31d6081a044ef6b9c1e48a0c94c8d51b01 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 30 May 2013 15:56:15 -0700 Subject: [PATCH] Set resource path as single argument --- Gruntfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index f38bfc084..2cc73b2ad 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -229,7 +229,7 @@ module.exports = (grunt) -> commands.push (callback) -> exec('pkill', ['Atom'], ignoreFailures: true, callback) commands.push (result, callback) -> - exec(path.join(CONTENTS_DIR, 'MacOS', 'Atom'), ['--test', '--resource-path', __dirname], callback) + exec(path.join(CONTENTS_DIR, 'MacOS', 'Atom'), ['--test', "--resource-path=#{__dirname}"], callback) grunt.util.async.waterfall commands, (error) -> done(!error?) grunt.registerTask('compile', ['coffee', 'less', 'cson'])