Skip to content

Commit 8826c5f

Browse files
committed
Fix trailing whitespace in test-kustomize.sh
Remove trailing whitespace on blank lines that causes bashate E001 failures in CI.
1 parent 76b978e commit 8826c5f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

hack/test-kustomize.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ fi
5959
for kustomize_file in "${kustomize_files[@]}"; do
6060
dir=$(dirname "$kustomize_file")
6161
echo -n " $dir: "
62-
62+
6363
# Check if this directory requires external plugins
6464
if is_excluded "$dir"; then
6565
echo -e "${BLUE}SKIPPED${NC} (requires external plugins)"
6666
SKIPPED=$((SKIPPED + 1))
6767
continue
6868
fi
69-
69+
7070
# Try to build the kustomization
7171
if kustomize build "$dir" > /dev/null 2>&1; then
7272
echo -e "${GREEN}OK${NC}"

0 commit comments

Comments
 (0)