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