commit 039fa967635f4e65b06390aa071ad3fd72f4a423
parent e17cecb666f08ba370ba1d314fc43ecfb590d593
Author: Alex Balgavy <a.balgavy@gmail.com>
Date: Wed, 31 Jul 2019 18:45:10 +0200
commonprofile: remove gpip3 alias
Former-commit-id: ea645eed08451cd7b54f8d2816161d1258f2dd02
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/shell/commonprofile b/shell/commonprofile
@@ -156,10 +156,9 @@ hr() { for ((i=0; i<$(tput cols); i++)); do echo -n "#"; done; echo; } # In
vimq() { vim -q <($(fc -nl -1)); } # Load results of last command (often ag) in vim quickfix
# create commands to override pip restriction.
-# use `gpip` or `gpip3` to force installation of
+# use `gpip` to force installation of
# a package in the global python environment
gpip(){ PIP_REQUIRE_VIRTUALENV="" pip "$@"; }
-gpip3(){ PIP_REQUIRE_VIRTUALENV="" pip3 "$@"; }
# }}}