Merge pull request #7683 from kaikli/fix-dev-app-name

fix dev application name to keep a consitant migration behaviour for the dev and prod build
This commit is contained in:
Matthieu Gallien 2025-01-06 11:00:01 +01:00 committed by GitHub
commit e465468680
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View 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()