From 9c9716a352ebec3fd2effe16e134c5d49f81dc1a Mon Sep 17 00:00:00 2001 From: Rene Luria Date: Mon, 31 Aug 2026 16:41:30 +0200 Subject: [PATCH] fix(build): Remove existing app before desktop install cp -R into an existing /Applications/myicek.app nested the new bundle inside the old one (myicek.app/myicek.app) and failed on the read-only legal files of the previous install. Delete the previous bundle first. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 5a6aae3..f4c624b 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ desktop: desktop-install: ./gradlew composeApp:packageDistributionForCurrentOS + rm -rf /Applications/myicek.app cp -R composeApp/build/compose/binaries/main/app/myicek.app /Applications/myicek.app android-usb: android