Skip to content

Instantly share code, notes, and snippets.

@eldh
Created February 26, 2014 17:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eldh/9234597 to your computer and use it in GitHub Desktop.
Save eldh/9234597 to your computer and use it in GitHub Desktop.
Gulp fontcustom
util = require "gulp-util"
exec = require("child_process").exec
gulp.task "_fontcustom", (fontsDone) ->
exec 'cd ../assets/ && fontcustom compile', (error, stdout, stderr) ->
util.log stdout
logExit error if error
fontsDone()
return
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment