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 authored and mgallien committed Jan 6, 2025
1 parent 9d2f681 commit a136204
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 a136204

Please sign in to comment.