From 1c5061574b31a6d511033713e186ef93c608f79a Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Wed, 8 Oct 2025 09:21:08 +0200 Subject: [PATCH] build(justfile): ensure usrdir is an absolute path --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index a71565c..235a281 100644 --- a/justfile +++ b/justfile @@ -3,7 +3,7 @@ appid := 'com.system76.CosmicSettings' rootdir := '' prefix := '/usr' -usrdir := clean(rootdir / prefix) +usrdir := absolute_path(clean(rootdir / prefix)) appdir := usrdir / 'share' / 'applications' default-schema-target := usrdir / 'share' / 'cosmic' iconsdir := usrdir / 'share' / 'icons' / 'hicolor'