Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

Commit

Permalink
fix: add trailing slash to path identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
lleyton committed Feb 6, 2024
1 parent 5f61724 commit 1e81e02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project('com.fyralabs.SkiffDesktop', ['c', 'vala'], version: '0.2.0')

# Convert the app id to a GNOME style path identifier
path_identifier = '/' + meson.project_name().replace('.', '/')
path_identifier = '/' + meson.project_name().replace('.', '/') + '/'

subproject('blueprint-compiler', required: false)

Expand Down

0 comments on commit 1e81e02

Please sign in to comment.