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 fi
;; ;;
*) *)
echo "Unknown argument: $1" >&2 CONTAINER_ARGS+=("$1")
exit 1 shift
;; ;;
esac esac
done done