mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
7 lines
216 B
JavaScript
7 lines
216 B
JavaScript
var cp = require('child_process'),
|
|
path = require('path');
|
|
(function() {
|
|
cp.execFileSync('rm', ['-rf', path.join(__dirname, "temp")]); // GOOD
|
|
cp.execSync('rm -rf ' + path.join(__dirname, "temp")); // BAD
|
|
});
|