fix dev application name
authorkaikli <75146125+kaikli@users.noreply.github.com>
Wed, 18 Dec 2024 06:33:00 +0000 (07:33 +0100)
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>
Mon, 6 Jan 2025 10:00:26 +0000 (10:00 +0000)
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

index e2632dbcfb6d67caf1692d11e576f9b82058c190..85a46b38bea50bff81d9df08f6ca5ae67a5578a9 100644 (file)
@@ -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()