Update mkdist -- copy auxiliary opensim.currency files

This commit is contained in:
lickx
2025-06-06 07:36:38 +02:00
parent a1681f2247
commit 724a447b68
2 changed files with 8 additions and 0 deletions

View File

@@ -40,6 +40,10 @@ if not exist bin\MoneyServer.dll goto skipopensimcurrency
SET TARGET_ZIP=opensimcurrency-%GIT_BRANCH%-%LAST_COMMIT_DATE%_%GIT_REV%.zip
set excludes=-x "*Tests*"
echo %TARGET_ZIP%
copy addon-modules\opensim.currency\OpenSim.Grid.MoneyServer\MoneyServer.exe.config bin
copy addon-modules\opensim.currency\OpenSim.Grid.MoneyServer\MoneyServer.ini.example bin
copy addon-modules\opensim.currency\OpenSim.Grid.MoneyServer\server_cert.p12 bin
copy addon-modules\opensim.currency\OpenSim.Grid.MoneyServer\SineWaveCert.pfx bin
zip -r -o "%TARGET_ZIP%" bin/MoneyServer.* bin/OpenSim.Data.MySQL.MySQLMoneyDataWrapper.* bin/OpenSim.Modules.Currency.* bin/server_cert.p12 bin/SineWaveCert.pfx helper/economy %excludes%
:skipopensimcurrency

View File

@@ -36,6 +36,10 @@ if [ -f bin/MoneyServer.dll ]; then
TARGETZIP=opensimcurrency-${GIT_BRANCH}-${LAST_COMMIT_DATE}_${GIT_REV}.zip
EXCLUDES="*Tests*"
echo "${TARGETZIP}"
cp addon-modules/opensim.currency/OpenSim.Grid.MoneyServer/MoneyServer.exe.config bin
cp addon-modules/opensim.currency/OpenSim.Grid.MoneyServer/MoneyServer.ini.example bin
cp addon-modules/opensim.currency/OpenSim.Grid.MoneyServer/server_cert.p12 bin
cp addon-modules/opensim.currency/OpenSim.Grid.MoneyServer/SineWaveCert.pfx bin
zip -r -o ${TARGETZIP} bin/MoneyServer.* bin/OpenSim.Data.MySQL.MySQLMoneyDataWrapper.* bin/OpenSim.Modules.Currency.* bin/server_cert.p12 bin/SineWaveCert.pfx helper/economy -x ${EXCLUDES}
fi