-
Notifications
You must be signed in to change notification settings - Fork 53
Open
Labels
kind/bugCategorizes issue or PR as related to a bug.Categorizes issue or PR as related to a bug.
Description
knobots/actions/update-deps/entrypoint.sh
Line 65 in f15f57f
| [[ ! -f hack/update-codegen.sh ]] || ./hack/update-codegen.sh |
This line is probably buggy. In shell, if the whole line will be evaluated as conditional, and conditionals doesn't fail the script.
It most likely should be:
if [[ ! -f hack/update-codegen.sh ]]; then
./hack/update-codegen.sh
fi/kind bug
Metadata
Metadata
Assignees
Labels
kind/bugCategorizes issue or PR as related to a bug.Categorizes issue or PR as related to a bug.