Fix shell

This commit is contained in:
Nicolas Duhamel 2018-05-09 12:35:58 +02:00
parent 72d8e85294
commit 46d4295d1a

View File

@ -5,10 +5,8 @@
# This script load them for you # This script load them for you
# source it from your shellrc # source it from your shellrc
if [ -d ~/.config/environment.d ]; then [ -d ~/.config/environment.d ] || exit 0
set -a
for f in `ls -v ~/.config/environment.d`; do
. ~/.config/environment.d/$f
done
fi
set -a
for f in ~/.config/environment.d/*; do . $f; done
set +a