Skip to content

Commit 6681b2c

Browse files
committed
remove unnecessary semicolon which breaks zsh on mac
1 parent ad927de commit 6681b2c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

content/en/boilerplates/gateway-api-install-crds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ installed before using the Gateway API:
55

66
{{< text syntax=bash snip_id=install_crds >}}
77
$ kubectl get crd gateways.gateway.networking.k8s.io &> /dev/null || \
8-
{ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/{{< k8s_gateway_api_version >}}/standard-install.yaml; }
8+
{ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/{{< k8s_gateway_api_version >}}/standard-install.yaml }
99
{{< /text >}}

content/en/boilerplates/snips/gateway-api-install-crds.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222

2323
bpsnip_gateway_api_install_crds_install_crds() {
2424
kubectl get crd gateways.gateway.networking.k8s.io &> /dev/null || \
25-
{ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.2.1/standard-install.yaml; }
25+
{ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.2.1/standard-install.yaml }
2626
}

content/uk/boilerplates/gateway-api-install-crds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
{{< text syntax=bash snip_id=install_crds >}}
66
$ kubectl get crd gateways.gateway.networking.k8s.io &> /dev/null || \
7-
{ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/{{< k8s_gateway_api_version >}}/standard-install.yaml; }
7+
{ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/{{< k8s_gateway_api_version >}}/standard-install.yaml }
88
{{< /text >}}

content/zh/boilerplates/gateway-api-install-crds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55

66
{{< text syntax=bash snip_id=install_crds >}}
77
$ kubectl get crd gateways.gateway.networking.k8s.io &> /dev/null || \
8-
{ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/{{< k8s_gateway_api_version >}}/standard-install.yaml; }
8+
{ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/{{< k8s_gateway_api_version >}}/standard-install.yaml }
99
{{< /text >}}

0 commit comments

Comments
 (0)