diff options
| author | NavaL <ayoyo@thoughtworks.com> | 2016-12-06 14:51:45 +0100 | 
|---|---|---|
| committer | NavaL <ayoyo@thoughtworks.com> | 2016-12-06 14:53:21 +0100 | 
| commit | c28abba2f5b1186c671ebef508d40ffaae6d5bc5 (patch) | |
| tree | 0281d3f12bc52edd6ecd550b061a813acb35363c | |
| parent | 76efb47c91a6add0369e699e935bcf048ab9e3b0 (diff) | |
 defaulting pip install to switch when requirements repos are changed --fixing build
| -rwxr-xr-x | service/go | 6 | 
1 files changed, 3 insertions, 3 deletions
@@ -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."  }  | 
