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
Oh, actually looks like set -o unset also causes problems. Work-around with this:
set +o errexit ; set +o nounset
read_ini ~/.script.ini
set -o errexit ; set -o nounset
In a script with "set -o errexit" the read_ini will fail. As a work-around, turn off errexit before using read_ini:
The text was updated successfully, but these errors were encountered: