mirror of
https://github.com/alibaba/higress.git
synced 2026-02-18 21:10:53 +08:00
12 lines
164 B
Bash
Executable File
12 lines
164 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
# Generate all protos
|
|
buf generate \
|
|
--path networking \
|
|
--path extensions
|
|
|
|
# Generate CRDs
|
|
cue-gen -verbose -f=./cue.yaml -crd=true
|