2024-10-20 10:45:03 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
path=$(realpath "$(dirname "$0")") || exit 1
|
|
|
|
rm -rf "$path/../../services/burgernotes.fgs" || exit 1
|
|
|
|
cd "$path" || exit 1
|
2024-10-20 16:53:45 +01:00
|
|
|
protoc -I="$path" --go_out="$path" "$path/main.proto" || exit 1
|
2024-10-20 10:45:03 +01:00
|
|
|
go build -o "$path/../../services/burgernotes.fgs" --buildmode=plugin -ldflags "-s -w" || exit 1
|