Remove stray if

This commit is contained in:
Kevin Sawicki
2014-09-22 17:17:15 -07:00
parent 7581832658
commit 428532cd24

View File

@@ -6,7 +6,7 @@ module.exports = (grunt) ->
{spawn, rm} = require('./task-helpers')(grunt)
grunt.registerTask 'create-installer', 'Create the Windows installer', ->
return unless if process.platform is 'win32'
return unless process.platform is 'win32'
done = @async()