From d062814dffca21d00e0cb5ba4b920ee590c03025 Mon Sep 17 00:00:00 2001 From: kaikli <75146125+kaikli@users.noreply.github.com> Date: Wed, 18 Dec 2024 07:33:00 +0100 Subject: [PATCH] fix dev application name keep application name and short name the same for the dev and prod build or some migration logic will work differently for each build Signed-off-by: kaikli <75146125+kaikli@users.noreply.github.com> --- NEXTCLOUD.cmake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/NEXTCLOUD.cmake b/NEXTCLOUD.cmake index e2632dbcfb6d6..85a46b38bea50 100644 --- a/NEXTCLOUD.cmake +++ b/NEXTCLOUD.cmake @@ -1,6 +1,8 @@ +# keep the application name and short name the same or different for dev and prod build +# or some migration logic will behave differently for each build if(NEXTCLOUD_DEV) set( APPLICATION_NAME "NextcloudDev" ) - set( APPLICATION_SHORTNAME "NextDev" ) + set( APPLICATION_SHORTNAME "NextcloudDev" ) set( APPLICATION_EXECUTABLE "nextclouddev" ) set( APPLICATION_ICON_NAME "Nextcloud" ) else()