blob: f21ea3cbd45653beec9e6474ab5d81ba199edc28 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#! /usr/bin/env sh
dotnet build -c Release
cat lst | while read id
do
DOTNET_ENVIRONMENT=Local dotnet bin/Release/net9.0/MatrixUtils.RoomUpgradeCLI.dll new tmp/$id.json --upgrade $id --upgrade-unstable-values --force-upgrade --invite-powerlevel-users \; \
import-upgrade-state tmp/$id.json \; \
modify tmp/$id.json --version 12 &
done
wait
|