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.
This commit is contained in:
Marty Oehme 2025-03-18 11:15:56 +01:00
parent d69a0f40e1
commit 36936142f6
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -16,7 +16,7 @@
[ -r ./conf ] && . ./conf [ -r ./conf ] && . ./conf
if [ -e "$HOME/.config/sh/profile" ]; then if [ -e "$HOME/.config/sh/profile" ]; then
XDG_PROFILE="${XDG_PROFILE:-HOME/.config/sh/profile}" XDG_PROFILE="${XDG_PROFILE:-$HOME/.config/sh/profile}"
fi fi
ENV=${XDG_PROFILE:-$HOME/.profile} sh -i -c env | while IFS= read -r line; do ENV=${XDG_PROFILE:-$HOME/.profile} sh -i -c env | while IFS= read -r line; do