bin/brew: don't allow unbound variables.

This can fail for users using `bash -u` or `set -u` in their shell so
let's try to be stricter here for both them and us.
This commit is contained in:
Mike McQuaid 2025-01-09 12:48:48 +00:00
parent 352f6ac047
commit 7c7b15d886
No known key found for this signature in database

View File

@ -1,4 +1,4 @@
#!/bin/bash -p #!/bin/bash -pu
set -u set -u
# Fail fast with concise message when not using bash # Fail fast with concise message when not using bash