Skip to content

Commit

Permalink
fix dev application name
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
kaikli committed Dec 18, 2024
1 parent 46e223d commit d062814
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 d062814

Please sign in to comment.