Add missing mkdir assignment

This commit is contained in:
Kevin Sawicki
2014-10-23 09:28:47 -07:00
parent f776678b83
commit ff32fff483

View File

@@ -3,7 +3,7 @@ path = require 'path'
_ = require 'underscore-plus'
module.exports = (grunt) ->
{spawn, rm} = require('./task-helpers')(grunt)
{spawn, rm, mkdir} = require('./task-helpers')(grunt)
fillTemplate = (filePath, data) ->
template = _.template(String(fs.readFileSync("#{filePath}.in")))