diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2018-05-30 19:51:45 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2018-05-30 19:51:45 +0300 |
commit | 39696cd0ef435f830f9eae62b457f1cc81c341a0 (patch) | |
tree | 1ae9ac76655f4bc3785f5364011e82c108d8c708 | |
parent | .my.cnf: mysql --no-auto-rehash (diff) | |
download | linux-home-39696cd0ef435f830f9eae62b457f1cc81c341a0.tar.gz linux-home-39696cd0ef435f830f9eae62b457f1cc81c341a0.zip |
.profile: more POSIX sh-compatible
-rw-r--r-- | %HOME%/.profile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/%HOME%/.profile b/%HOME%/.profile index 0673f0d..fc581b7 100644 --- a/%HOME%/.profile +++ b/%HOME%/.profile @@ -4,6 +4,6 @@ && LANG="$( locale --no-unicode --utf )" \ && export LANG -[ -n "${BASH_VERSION+x}" ] \ +[ -n "${BASH_VERSION+x}" ] \ && [ -r "$HOME/.bashrc" ] \ - && source "$HOME/.bashrc" + && . "$HOME/.bashrc" |