You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Exit on error and unset variable usage, and print each command before
# executing it
set -euo pipefail
none of these options print commands before executing. Did you let an LLM lie to you? (probably set -x comes closest to "print each command before executing")
-euo pipefail comes with interesting pitfalls and should not be applied to scripts as a blanket treatment. See here for more information.