mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
8 lines
194 B
JavaScript
8 lines
194 B
JavaScript
var cp = require("child_process"),
|
|
path = require("path");
|
|
function cleanupTemp() {
|
|
let cmd = "rm",
|
|
args = ["-rf", path.join(__dirname, "temp")];
|
|
cp.execFileSync(cmd, args); // GOOD
|
|
}
|