Files @ e041a4c24bd8
Branch filter:

Location: majic-ansible-roles/roles/common/files/user_profile_d.sh

branko
MAR-145: Replace all tabs with whitespaces (code style fix).
1
2
3
4
5
6
7
8
# Read user-specific profile "configuration" files.
if [ -d "$HOME/.profile.d" ]; then
    for conf in "$HOME"/.profile.d/*.sh; do
        if [ -r "$conf" ]; then
            . "$conf"
        fi
    done
fi