From b2c04ad8be5fa8e18fef7b211aaad653a745a0ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Fonzo?= Date: Thu, 6 Feb 2020 20:06:37 -0300 Subject: starttde: Fix bashisms MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 'source' is a shell builtin coming from GNU Bash. Signed-off-by: Matías Fonzo --- starttde | 4 ++-- 1 file 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 ... -- cgit v1.2.1