mirror of
https://github.com/github/codeql-action.git
synced 2026-05-07 14:20:19 +00:00
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);
|
|
});
|