summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatías Fonzo <selk@dragora.org>2020-02-06 20:06:37 -0300
committerSlávek Banko <slavek.banko@axis.cz>2020-02-10 20:14:50 +0100
commit8ca134589beeea27822d8fbeff5a623db146ccc6 (patch)
tree9377850d59c1b3d3c92c19a11162f3febe695156
parentf24d0233954e8ad0cf0538beadbe71f8201212cb (diff)
downloadtdebase-8ca134589beeea27822d8fbeff5a623db146ccc6.tar.gz
tdebase-8ca134589beeea27822d8fbeff5a623db146ccc6.zip
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 b2c04ad8be5fa8e18fef7b211aaad653a745a0ee)
-rwxr-xr-xstarttde4
1 files changed, 2 insertions, 2 deletions
diff --git a/starttde b/starttde
index ba025d819..f12ce57b1 100755
--- a/starttde
+++ b/starttde
@@ -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 ...