Update tools/docker/lib/common

Co-authored-by: Brad Warren <bmw@users.noreply.github.com>
This commit is contained in:
humanoid2050 2023-04-06 18:33:37 -04:00 committed by GitHub
parent 6f611a5869
commit 4582b7f726
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,7 +73,7 @@ InterpretArchRequest() {
for REQUESTED_ARCH in "${REQUESTED_ARCH_ARRAY[@]}"; do
local IFS=" "
if [[ ! " ${ALL_TARGET_ARCH[*]} " =~ " ${REQUESTED_ARCH} " ]]; then
echo "unknown architecture identifier: ${REQUESTED_ARCH}"
echo "unknown architecture identifier: ${REQUESTED_ARCH}" >&2
exit 1
fi
done