Skip to content

Commit

Permalink
remove unnecessary semicolon which breaks zsh on mac (#16185)
Browse files Browse the repository at this point in the history
* remove unnecessary semicolon which breaks zsh on mac

* better fix
  • Loading branch information
craigbox authored Feb 3, 2025
1 parent 757ed63 commit 9d971f6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion content/en/boilerplates/gateway-api-install-crds.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ installed before using the Gateway API:

{{< text syntax=bash snip_id=install_crds >}}
$ kubectl get crd gateways.gateway.networking.k8s.io &> /dev/null || \
{ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/{{< k8s_gateway_api_version >}}/standard-install.yaml; }
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/{{< k8s_gateway_api_version >}}/standard-install.yaml
{{< /text >}}
2 changes: 1 addition & 1 deletion content/en/boilerplates/snips/gateway-api-install-crds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@

bpsnip_gateway_api_install_crds_install_crds() {
kubectl get crd gateways.gateway.networking.k8s.io &> /dev/null || \
{ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.2.1/standard-install.yaml; }
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.2.1/standard-install.yaml
}
2 changes: 1 addition & 1 deletion content/uk/boilerplates/gateway-api-install-crds.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

{{< text syntax=bash snip_id=install_crds >}}
$ kubectl get crd gateways.gateway.networking.k8s.io &> /dev/null || \
{ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/{{< k8s_gateway_api_version >}}/standard-install.yaml; }
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/{{< k8s_gateway_api_version >}}/standard-install.yaml
{{< /text >}}
2 changes: 1 addition & 1 deletion content/zh/boilerplates/gateway-api-install-crds.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@

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

0 comments on commit 9d971f6

Please sign in to comment.