From 36936142f6d8a3e135200cef7bdf913fb2e57f3a Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 18 Mar 2025 11:15:56 +0100 Subject: [PATCH] services: Fix user profile path spelling Fixes loading the user environment variables into user services again, this time by fixing a missing `$` creating a false path to load from. --- services/sv/loadenv/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/sv/loadenv/run b/services/sv/loadenv/run index 4e45759..fe29f7c 100755 --- a/services/sv/loadenv/run +++ b/services/sv/loadenv/run @@ -16,7 +16,7 @@ [ -r ./conf ] && . ./conf if [ -e "$HOME/.config/sh/profile" ]; then - XDG_PROFILE="${XDG_PROFILE:-HOME/.config/sh/profile}" + XDG_PROFILE="${XDG_PROFILE:-$HOME/.config/sh/profile}" fi ENV=${XDG_PROFILE:-$HOME/.profile} sh -i -c env | while IFS= read -r line; do