fix(toolchain_util): Correct default binhost ordering.

Later hosts in the list override earlier hosts so the current version
must be listed after the older sdk version.
This commit is contained in:
Michael Marineau 2014-03-24 11:15:56 -07:00
parent 0a4e6716b4
commit dc1b3e32e9

View File

@ -118,7 +118,7 @@ get_board_binhost() {
shift
if [[ $# -eq 0 ]]; then
set -- "${COREOS_VERSION_ID}" "${COREOS_SDK_VERSION}"
set -- "${COREOS_SDK_VERSION}" "${COREOS_VERSION_ID}"
fi
for ver in "$@"; do