From 2c2bce0e5b08498d9b4e0a9676a2b20701d84827 Mon Sep 17 00:00:00 2001 From: Burnett Sibakwe Date: Tue, 28 Feb 2017 18:55:02 +0200 Subject: [PATCH] Workaround for this issue: https://github.com/pypa/virtualenv/issues/150 --- build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sh b/build.sh index 344d483..7f38a78 100755 --- a/build.sh +++ b/build.sh @@ -26,7 +26,9 @@ then fi echo "Installing requirements.txt..." +set +o nounset source virtualenv/bin/activate +set -o nounset pip install -r fairintranet/requirements.txt cd fairintranet python manage.py collectstatic --noinput