From ecd62287207ff7b91617ba38dd195097fc6be27b Mon Sep 17 00:00:00 2001 From: Beingpax Date: Wed, 29 Oct 2025 12:02:09 +0545 Subject: [PATCH] Remove legacy dependency cleanup during build process. --- Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Makefile b/Makefile index 13da676..914c52d 100644 --- a/Makefile +++ b/Makefile @@ -39,8 +39,6 @@ whisper: setup: whisper @echo "Whisper framework is ready at $(FRAMEWORK_PATH)" @echo "Please ensure your Xcode project references the framework from this new location." - @echo "Removing old framework copy from the project directory (if it exists)..." - @rm -rf VoiceInk/whisper.xcframework build: setup xcodebuild -project VoiceInk.xcodeproj -scheme VoiceInk -configuration Debug CODE_SIGN_IDENTITY="" build @@ -61,7 +59,6 @@ run: clean: @echo "Cleaning build artifacts..." @rm -rf $(DEPS_DIR) - @rm -rf VoiceInk/whisper.xcframework @echo "Clean complete" # Help