mirror of
https://github.com/github/codeql.git
synced 2026-03-30 12:18:18 +02:00
6 lines
156 B
TypeScript
6 lines
156 B
TypeScript
var cp = require("child_process")
|
|
|
|
export default function (name) {
|
|
cp.exec("rm -rf " + name); // NOT OK - the "files" directory points to this file.
|
|
}
|