fix: allow unknown arguments in start-azurite script to be passed as container arguments

This commit is contained in:
2026-03-24 09:45:44 +01:00
parent b342be88f3
commit 2631d4ff85

View File

@@ -23,8 +23,8 @@ while [[ $# -gt 0 ]]; do
fi
;;
*)
echo "Unknown argument: $1" >&2
exit 1
CONTAINER_ARGS+=("$1")
shift
;;
esac
done