diff options
author | Matías Fonzo <selk@dragora.org> | 2020-02-06 20:06:37 -0300 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2020-02-10 19:13:04 +0000 |
commit | b2c04ad8be5fa8e18fef7b211aaad653a745a0ee (patch) | |
tree | 668d34f62a5c414e42a1fe41a19dece1196bdabc /starttde | |
parent | 1bc47b3d82b4538793987ebb90cab1d7cec9f5f9 (diff) | |
download | tdebase-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>
Diffstat (limited to 'starttde')
-rwxr-xr-x | starttde | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 ... |