File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ echo "// WARNING! generated file do not edit" > src/apis/standard/mod.rs
49
49
for API in " ${STANDARD_APIS[@]} "
50
50
do
51
51
echo " generating standard api ${API} "
52
- curl -sSL " https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/main /config/crd/standard/gateway.networking.k8s.io_${API} .yaml?ref= ${VERSION} " | kopium -Af - > src/apis/standard/${API} .rs
52
+ curl -sSL " https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/${VERSION} /config/crd/standard/gateway.networking.k8s.io_${API} .yaml" | kopium -Af - > src/apis/standard/${API} .rs
53
53
echo " pub mod ${API} ;" >> src/apis/standard/mod.rs
54
54
done
55
55
@@ -58,6 +58,6 @@ echo "// WARNING! generated file do not edit" > src/apis/experimental/mod.rs
58
58
for API in " ${EXPERIMENTAL_APIS[@]} "
59
59
do
60
60
echo " generating experimental api $API "
61
- curl -sSL " https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/main /config/crd/experimental/gateway.networking.k8s.io_${API} .yaml?ref= ${VERSION} " | kopium -Af - > src/apis/experimental/${API} .rs
61
+ curl -sSL " https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/${VERSION} /config/crd/experimental/gateway.networking.k8s.io_${API} .yaml" | kopium -Af - > src/apis/experimental/${API} .rs
62
62
echo " pub mod ${API} ;" >> src/apis/experimental/mod.rs
63
63
done
You can’t perform that action at this time.
0 commit comments