MCPcopy Create free account
hub / github.com/gotify/server / buildGoPlugin

Function buildGoPlugin

ui/src/tests/setup.ts:99–104  ·  view source on GitHub ↗
(filename: string, pluginPath: string)

Source from the content-addressed store, hash-verified

97 });
98
99const 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
106const buildGoExecutable = (filename: string): Promise<void> => {
107 const envGotify = process.env.GOTIFY_EXE;

Callers 1

newPluginDirFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…