Skip to content

Commit

Permalink
workflow: Fix kustomize permissions issues
Browse files Browse the repository at this point in the history
Add sudo to install and ensure it has execute permission
  • Loading branch information
stevenhorsman authored and wainersm committed Oct 10, 2024
1 parent 31272c7 commit 191ec51
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/e2e_libvirt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,9 @@ jobs:
- name: Install kustomize
run: |
command -v kustomize >/dev/null || \
curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | \
sudo curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | \
bash -s /usr/local/bin
sudo chmod a+x /usr/local/bin/kustomize
- name: Checkout KBS Repository
run: |
Expand Down

0 comments on commit 191ec51

Please sign in to comment.