mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 01:30:10 +08:00
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
9 lines
187 B
JavaScript
Executable File
9 lines
187 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const {DumpPlugin} = require("../build/dump-plugin");
|
|
|
|
new DumpPlugin().run().catch(_ => {
|
|
process.stderr.write('failed to run plugin');
|
|
process.exit(1);
|
|
});
|