(filename: string, pluginPath: string)
| 97 | }); |
| 98 | |
| 99 | const buildGoPlugin = (filename: string, pluginPath: string): Promise<void> => { |
| 100 | process.stdout.write(`### Building Plugin ${pluginPath}\n`); |
| 101 | return new Promise((resolve) => |
| 102 | exec(`go build -o ${filename} -buildmode=plugin ${pluginPath}`, () => resolve()) |
| 103 | ); |
| 104 | }; |
| 105 | |
| 106 | const buildGoExecutable = (filename: string): Promise<void> => { |
| 107 | const envGotify = process.env.GOTIFY_EXE; |
no outgoing calls
no test coverage detected
searching dependent graphs…