remove debug output from shebang exec

This commit is contained in:
Kevin Lange 2014-06-03 23:21:38 -07:00
parent 3e03dffc4b
commit 3f6a5e0fdc

View File

@ -199,10 +199,6 @@ int exec_shebang(char * path, fs_node_t * file, int argc, char ** argv, char **
}
args[j] = NULL;
for (int i = 0; i < nargc; ++i) {
debug_print(WARNING, "[%d] %s", i, args[i]);
}
return exec(cmd, nargc, args, env);
}