You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wg-access-server/codegen.sh

13 lines
185 B
Bash

#!/bin/sh
set -e
SCRIPT_DIR="$(dirname $0)"
OUT_DIR="$SCRIPT_DIR/proto/proto"
mkdir -p "$OUT_DIR" || true
protoc \
-I proto/ \
proto/*.proto \
--go_out="plugins=grpc:$OUT_DIR"