mirror of
https://github.com/github/codeql.git
synced 2025-12-19 02:13:17 +01: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.
|
|
}
|