From 724a447b68476c17f398927eadee3a69bbe7a028 Mon Sep 17 00:00:00 2001 From: lickx <11088547+lickx@users.noreply.github.com> Date: Fri, 6 Jun 2025 07:36:38 +0200 Subject: [PATCH] Update mkdist -- copy auxiliary opensim.currency files --- mkdist.bat | 4 ++++ mkdist.sh | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/mkdist.bat b/mkdist.bat index d7bbd24255..b9fc450e44 100644 --- a/mkdist.bat +++ b/mkdist.bat @@ -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 diff --git a/mkdist.sh b/mkdist.sh index 1cafa88fbc..ac369cdd41 100755 --- a/mkdist.sh +++ b/mkdist.sh @@ -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