diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-08-30 03:35:27 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-08-30 03:35:27 +0100 |
commit | 116f491fdfe087264d65110cc59c47eb23d3063a (patch) | |
tree | df47b5b2b269f05a71db51ae11473d924ce90650 /build | |
parent | 3b2c1818aed5fa119374f36c62cc74dc04c6dc7d (diff) | |
download | librebootfr-116f491fdfe087264d65110cc59c47eb23d3063a.tar.gz librebootfr-116f491fdfe087264d65110cc59c47eb23d3063a.zip |
build script: avoid conflicting with existing variable ($option)
Diffstat (limited to 'build')
-rwxr-xr-x | build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ option="${2}" shift 2 if [ -d "${build}/${mode}" ]; then - availableoptions="$(for option in ${build}/${mode}/*; do printf "%s\n" "${option##*/}"; done)" + availableoptions="$(for buildoption in ${build}/${mode}/*; do printf "%s\n" "${buildoption##*/}"; done)" if [ "${option}" = "list" ]; then printf "Available options for '%s' are:\nall\n%s\n\n" "${mode}" "${availableoptions}" elif [ -f "${build}/${mode}/${option}" ]; then |