Skip to content

Commit

Permalink
Merge pull request #7683 from kaikli/fix-dev-app-name
Browse files Browse the repository at this point in the history
fix dev application name to keep a consitant migration behaviour for the dev and prod build
  • Loading branch information
mgallien authored Jan 6, 2025
2 parents 9d2f681 + a136204 commit e465468
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion NEXTCLOUD.cmake
Original file line number Diff line number Diff line change
@@ -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()
Expand Down

0 comments on commit e465468

Please sign in to comment.