diff options
-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 w -r requirements.txt else - pip install -r requirements.txt + pip install --exists-action w -r requirements.txt fi - pip install -r test_requirements.txt + pip install --exists-action w -r test_requirements.txt echo "Done." } |