starttde: Fix bashisms

'source' is a shell builtin coming from GNU Bash.

Signed-off-by: Matías Fonzo <selk@dragora.org>
(cherry picked from commit b2c04ad8be)
pull/182/head
Matías Fonzo 4 years ago committed by Slávek Banko
parent f24d023395
commit 8ca134589b
Signed by: SlavekB
GPG Key ID: 608F5293A04BE668

@ -9,10 +9,10 @@
# Multiple sourcing is not a problem when the files are only
# containers for environment variables and such.
if [ -r /etc/xprofile ]; then
source /etc/xprofile
. /etc/xprofile
fi
if [ -r $HOME/.xprofile ]; then
source $HOME/.xprofile
. $HOME/.xprofile
fi
# Some functions to parse and check path correctly ...

Loading…
Cancel
Save