diff --git a/CHANGELIST.md b/CHANGELIST.md index 6c33954e..4029a134 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -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 diff --git a/publish-nix.sh b/publish-nix.sh index 8429a88b..eb8ebbb8 100755 --- a/publish-nix.sh +++ b/publish-nix.sh @@ -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 .