File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ _ret_prompt() {
75
75
_ret_same () { return $? ; }
76
76
77
77
# Base functions ready. Let's load bashrc.d.
78
- for c in /etc/bashrc.d/* ; do . $c ; done
78
+ for script in /etc/bashrc.d/* ; do . " $script " ; done
79
79
80
80
# The prompt depends on vcs_status! Get one backup anyway.
81
81
declare -f _vcs_status > /dev/null || ! echo _vcs_status not declared, making stub.. || alias _vcs_status=_ret_same
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ export HISTFILESIZE=4096
36
36
# Timezone variable $TZ, Wine and stuff alike need it.
37
37
export TZ=" $( readlink /etc/localtime | sed ' s/^\.\.//g' | sed " s/\/usr\/share\/zoneinfo\///" ) "
38
38
39
- for script in /etc/profile.d/* .sh ; do
39
+ for script in /etc/profile.d/* ; do
40
40
[ -r $script ] && . $script
41
41
done
42
42
You can’t perform that action at this time.
0 commit comments