From c28abba2f5b1186c671ebef508d40ffaae6d5bc5 Mon Sep 17 00:00:00 2001 From: NavaL Date: Tue, 6 Dec 2016 14:51:45 +0100 Subject: defaulting pip install to switch when requirements repos are changed --fixing build --- service/go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/service/go b/service/go index 8ceae7db..eae21a2e 100755 --- a/service/go +++ b/service/go @@ -38,11 +38,11 @@ function setuppy { echo "Installing Pixelated User Agent." pip install --upgrade pip setuptools if [ `uname -s` = "Darwin" ]; then - CFLAGS="-DCRYPTOPP_DISABLE_ASM=1" pip install -r requirements.txt + CFLAGS="-DCRYPTOPP_DISABLE_ASM=1" pip install --exists-action s -r requirements.txt else - pip install -r requirements.txt + pip install --exists-action s -r requirements.txt fi - pip install -r test_requirements.txt + pip install --exists-action s -r test_requirements.txt echo "Done." } -- cgit v1.2.3