fix: remove redundant 'local' declaration

This commit is contained in:
Bernie Green 2026-03-05 12:52:09 -05:00
commit 14a6b0d3d9

View file

@ -1,7 +1,7 @@
#!/usr/bin/env zsh
set +u # disable nounset
local ret=0 # exit code
ret=0 # exit code
# Protect against running with shells other than zsh
if [ -z "$ZSH_VERSION" ]; then