appveyor: Separate each app
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded

This commit is contained in:
Jonatan Nilsson 2022-10-17 14:16:57 +00:00
parent 89ea760ce3
commit 5c07b00f2d

View file

@ -36,6 +36,10 @@ build_script:
SUCCESS=1
echo ""
echo "------------------------------------"
echo ""
for f in *; do
[ ! -d "$f" ] || [ -L "$f" ] || [ "$f" = "base" ] && continue;
echo "checking $f";
@ -100,6 +104,9 @@ build_script:
echo "Deplying to production"
echo "curl -X POST http://192.168.93.50:$MAN_PORT/update/$MAN_NAME"
curl -X POST http://192.168.93.50:$MAN_PORT/update/$MAN_NAME
echo ""
echo "------------------------------------"
echo ""
cd ..
done