UNPKG

npub

Version:

publishing tool for your node projects hosted on github

15 lines (14 loc) 403 B
// Generated by CoffeeScript 2.0.0-beta7 void function () { var debug; debug = require('debug')('clean-stage'); module.exports = function (git, callback) { return git.isClean(function (isClean) { var err; debug('isClean: ' + isClean); if (!isClean) err = new Error('git status at ' + git.dir + ' is not clean'); return callback(err); }); }; }.call(this);