Fix null variable error on older bash versions

This commit is contained in:
Nathaniel Landau
2021-07-30 12:40:57 -04:00
parent 313554e626
commit 1d68daf06b

View File

@@ -320,7 +320,7 @@ _parseOptions_() {
esac esac
shift shift
done done
set -- "${options[@]}" set -- "${options[@]:-}"
unset options unset options
# Read the options and set stuff # Read the options and set stuff