Remove legacy dependency cleanup during build process.

This commit is contained in:
Beingpax 2025-10-29 12:02:09 +05:45
parent 615a0c4fad
commit ecd6228720

View File

@ -39,8 +39,6 @@ whisper:
setup: whisper setup: whisper
@echo "Whisper framework is ready at $(FRAMEWORK_PATH)" @echo "Whisper framework is ready at $(FRAMEWORK_PATH)"
@echo "Please ensure your Xcode project references the framework from this new location." @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 build: setup
xcodebuild -project VoiceInk.xcodeproj -scheme VoiceInk -configuration Debug CODE_SIGN_IDENTITY="" build xcodebuild -project VoiceInk.xcodeproj -scheme VoiceInk -configuration Debug CODE_SIGN_IDENTITY="" build
@ -61,7 +59,6 @@ run:
clean: clean:
@echo "Cleaning build artifacts..." @echo "Cleaning build artifacts..."
@rm -rf $(DEPS_DIR) @rm -rf $(DEPS_DIR)
@rm -rf VoiceInk/whisper.xcframework
@echo "Clean complete" @echo "Clean complete"
# Help # Help