From 2f5ff0211eb9eea4cf961881b6e840cb4a49a711 Mon Sep 17 00:00:00 2001 From: Eugene Rakhmatulin Date: Wed, 25 Mar 2026 15:39:23 -0700 Subject: [PATCH] Cleanup in build script --- build-and-copy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-and-copy.sh b/build-and-copy.sh index a304e7c..628b9c0 100755 --- a/build-and-copy.sh +++ b/build-and-copy.sh @@ -390,10 +390,10 @@ if [[ "$CLEANUP_MODE" == "true" ]]; then # Remove all .-commit files if compgen -G "$WHEELS_DIR/*.-commit" > /dev/null 2>&1; then - rm -f "$WHEELS_DIR"/*.-commit - echo "Removed *.-commit files from $WHEELS_DIR" + rm -f "$WHEELS_DIR"/.*-commit + echo "Removed .*-commit files from $WHEELS_DIR" else - echo "No *.-commit files found in $WHEELS_DIR" + echo "No .*-commit files found in $WHEELS_DIR" fi echo "Cleanup complete."