Skip to content

Commit

Permalink
fix find condition
Browse files Browse the repository at this point in the history
  • Loading branch information
jiridanek committed Nov 22, 2024
1 parent 900101b commit 1c959f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-notebooks-TEMPLATE.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ jobs:
run: |
set -Eeuxo pipefail
find . -name "statefulset.yaml" -or -name "pod.yaml" -type f -exec \
find . \( -name "statefulset.yaml" -o -name "pod.yaml" \) -type f -exec \
sed -i'' 's/imagePullPolicy: Always/imagePullPolicy: IfNotPresent/g' {} \;
git diff
Expand Down

0 comments on commit 1c959f5

Please sign in to comment.