diff options
author | Matías Fonzo <[email protected]> | 2020-02-06 20:06:37 -0300 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2020-02-10 20:14:50 +0100 |
commit | 8ca134589beeea27822d8fbeff5a623db146ccc6 (patch) | |
tree | 9377850d59c1b3d3c92c19a11162f3febe695156 | |
parent | f24d0233954e8ad0cf0538beadbe71f8201212cb (diff) | |
download | tdebase-8ca134589beeea27822d8fbeff5a623db146ccc6.tar.gz tdebase-8ca134589beeea27822d8fbeff5a623db146ccc6.zip |
starttde: Fix bashisms
'source' is a shell builtin coming from GNU Bash.
Signed-off-by: Matías Fonzo <[email protected]>
(cherry picked from commit b2c04ad8be5fa8e18fef7b211aaad653a745a0ee)
-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 ... |