From 1e81e02bf8070295c0f61968728fa7ab51af340a Mon Sep 17 00:00:00 2001 From: Lleyton Gray <lleyton@fyralabs.com> Date: Tue, 6 Feb 2024 15:07:50 -0800 Subject: [PATCH] fix: add trailing slash to path identifier --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 1ca2be9..914a1cb 100644 --- a/meson.build +++ b/meson.build @@ -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)