Remove debugging lines from build script

This commit is contained in:
Matt Nadareski
2024-02-20 20:52:49 -05:00
parent fe20905524
commit 2573b47a79
2 changed files with 4 additions and 4 deletions

View File

@@ -1,3 +1,7 @@
### WIP (xxxx-xx-xx)
- Remove debugging lines from build script
### 3.1.1 (2024-02-20)
- Remove .NET 6 from auto-builds

View File

@@ -120,12 +120,9 @@ then
# Create UI archives
for FRAMEWORK in "${UI_FRAMEWORKS[@]}"
do
echo "Framework: $FRAMEWORK"
for RUNTIME in "${UI_RUNTIMES[@]}"
do
echo "Runtime: $RUNTIME"
cd $BUILD_FOLDER/MPF/bin/Debug/${FRAMEWORK}/${RUNTIME}/publish/
echo "PWD: $PWD"
if [ $INCLUDE_PROGRAMS = true ]
then
zip -r $BUILD_FOLDER/MPF_${FRAMEWORK}_${RUNTIME}_debug.zip .
@@ -133,7 +130,6 @@ then
zip -r $BUILD_FOLDER/MPF_${FRAMEWORK}_${RUNTIME}_debug.zip . -x 'Programs/\*'
fi
cd $BUILD_FOLDER/MPF/bin/Release/${FRAMEWORK}/${RUNTIME}/publish/
echo "PWD: $PWD"
if [ $INCLUDE_PROGRAMS = true ]
then
zip -r $BUILD_FOLDER/MPF_${FRAMEWORK}_${RUNTIME}_release.zip .