Nice! Thanks for the tip. I might recommend one small change. Using a semicolon makes it easier to read (in my opinion) and helps it pass ShellCheck. [ -n "$LIB_NAME" ] && return; readonly LIB_NAME=1
[ -n "$LIB_NAME" ] && return; readonly LIB_NAME=1
Nice! Thanks for the tip.
I might recommend one small change. Using a semicolon makes it easier to read (in my opinion) and helps it pass ShellCheck.
[ -n "$LIB_NAME" ] && return; readonly LIB_NAME=1