summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatías Fonzo <selk@dragora.org>2020-02-06 20:06:37 -0300
committerTDE Gitea <gitea@mirror.git.trinitydesktop.org>2020-02-10 19:13:04 +0000
commitb2c04ad8be5fa8e18fef7b211aaad653a745a0ee (patch)
tree668d34f62a5c414e42a1fe41a19dece1196bdabc
parent1bc47b3d82b4538793987ebb90cab1d7cec9f5f9 (diff)
downloadtdebase-b2c04ad8be5fa8e18fef7b211aaad653a745a0ee.tar.gz
tdebase-b2c04ad8be5fa8e18fef7b211aaad653a745a0ee.zip
starttde: Fix bashisms
'source' is a shell builtin coming from GNU Bash. Signed-off-by: Matías Fonzo <selk@dragora.org>
-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 ...