This commit is contained in:
William Mantly 2016-01-30 22:23:59 -05:00
parent 003895079d
commit 8e9ef0f873

5
lxc.js
View File

@ -6,8 +6,9 @@ function sysExec(command, callback){
return exec(command, (function(){
return function(err,data,stderr){
if(!callback) return;
callback(data, err, stderr);
if(callback){
return callback(data, err, stderr);
}
}
})(callback));
};