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:
parent
d69a0f40e1
commit
36936142f6
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue