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