mirror of
https://github.com/apache/superset.git
synced 2026-07-21 14:15:50 +00:00
`[ -n "" ] && echo ""` exits 1 when output is empty and `set -e` is active, causing oxlint-frontend pre-commit hook to fail on clean files. Restore the `if [ -n "$output" ]; then echo "$output"; fi` form that does not rely on the exit status of the bracket test. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>