From 24d5fdd6eb002bc2b237d057a024550aeecce9be Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 29 May 2013 18:44:28 -0700 Subject: [PATCH] Create path to install directory --- Gruntfile.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index d11b4c48c..4ea686dc5 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -139,6 +139,7 @@ module.exports = (grunt) -> grunt.registerTask 'install', 'Install the built application', -> rm INSTALL_DIR + mkdir path.dirname(INSTALL_DIR) cp path.join(BUILD_DIR, APP_NAME), INSTALL_DIR grunt.registerTask('compile', ['coffee', 'less', 'cson'])