dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit f8ff7403c89efff91f17096c736c2fbaa4eb487c
parent ce0a19ff2a11d5760a64e3b425c76010dd52ad63
Author: Anders Damsgaard Christensen <adc@geo.au.dk>
Date:   Thu, 13 Oct 2016 12:13:39 -0700

run pip commands as regular user

Diffstat:
Mbin/uu | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/uu b/bin/uu @@ -48,6 +48,6 @@ git pull && \ git submodule sync; git submodule update echo "## Updating pip" -sudo -H pip install --upgrade pip +pip install --upgrade pip echo "## Updating pip packages" -pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs sudo -H pip install -U +pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs pip install -U