Problem
hack/create-kind-cluster.sh (lines 17–18) and hack/install.sh (lines 19–20) both have:
set -e is an exact alias for set -o errexit. Having both on consecutive lines creates misleading code that implies they do different things, and introduces unnecessary noise.
Proposed Fix
Remove the set -e line and keep only set -o errexit in both files.
Problem
hack/create-kind-cluster.sh(lines 17–18) andhack/install.sh(lines 19–20) both have:set -eis an exact alias forset -o errexit. Having both on consecutive lines creates misleading code that implies they do different things, and introduces unnecessary noise.Proposed Fix
Remove the
set -eline and keep onlyset -o errexitin both files.