Skip to content

Commit a284f10

Browse files
committed
fix: chmod only the required binaries
switching to 24.04 github action runner introduces this error chmod: cannot operate on dangling symlink '/usr/local/bin/now' hence instead of chmod all binaries present in /usr/local/bin, we only chmod the binaries that we copy. Signed-off-by: Imran Pochi <imranpochi@microsoft.com>
1 parent 531ae6d commit a284f10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/e2e.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
sudo cp ${TMP_DIR}/e2e.test /usr/local/bin/e2e.test
137137
sudo cp ${TMP_DIR}/kubectl /usr/local/bin/kubectl
138138
sudo cp ${TMP_DIR}/kind /usr/local/bin/kind
139-
sudo chmod +x /usr/local/bin/*
139+
sudo chmod +x /usr/local/bin/ginkgo /usr/local/bin/e2e.test /usr/local/bin/kubectl /usr/local/bin/kind
140140
141141
- name: Create multi node cluster
142142
run: |

0 commit comments

Comments
 (0)