From: Oleg Broytman Date: Tue, 24 Dec 2019 01:48:52 +0000 (+0300) Subject: .shellrc: Use `.` instead of bashism `source` X-Git-Url: https://git.phdru.name/?p=dotfiles.git;a=commitdiff_plain;h=b5faa73648c53b61719b273b63912716ab7f0593 .shellrc: Use `.` instead of bashism `source` --- diff --git a/.shellrc b/.shellrc index 5200b80..b1c2da1 100644 --- a/.shellrc +++ b/.shellrc @@ -164,7 +164,7 @@ if test -n "$BASH_VERSION"; then # eval "`pyenv virtualenv-init -`" #fi - source virtualenvwrapper_lazy.sh 2>/dev/null + . virtualenvwrapper_lazy.sh 2>/dev/null if [ -n "$VIRTUAL_ENV" ] && ! type deactivate >/dev/null 2>&1; then . "$VIRTUAL_ENV/bin/activate"