Add missing rm assignment

This commit is contained in:
Kevin Sawicki
2014-10-22 17:57:15 -07:00
parent c1197d6390
commit 1c1adf5beb

View File

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