starttde: Fix bashisms

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

Signed-off-by: Matías Fonzo <selk@dragora.org>
pull/128/head
Matías Fonzo 4 years ago committed by TDE Gitea
parent 1bc47b3d82
commit b2c04ad8be

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

Loading…
Cancel
Save