In a script with "set -o errexit" the read_ini will fail. As a work-around, turn off errexit before using read_ini: ``` set +o errexit read_ini ~/.script.ini set -o errexit ```