feature(util) retExec -> exec.ret

This commit is contained in:
coderaiser 2014-05-23 03:01:33 -04:00
parent 58a3a6ff3e
commit 7332c7b325
15 changed files with 38 additions and 38 deletions

View file

@ -264,7 +264,7 @@
function getContent(name, callback) {
dir.isDir(name, function(error, isDir) {
var getDirContent = main.commander.getDirContent,
func = Util.retExec(callback);
func = Util.exec.ret(callback);
if (!error && isDir)
getDirContent(name, callback);