From fa690b91bc03c4be66fffe5d292a58aae5a1a7a0 Mon Sep 17 00:00:00 2001 From: Andrew Buss Date: Tue, 28 Apr 2015 21:11:42 -0700 Subject: [PATCH] bash -u was too strict; switching to bash -xe --- setup.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index bee3f54..7a2361d 100755 --- a/setup.sh +++ b/setup.sh @@ -1,5 +1,4 @@ -#!/bin/bash -x -set -euo pipefail +#!/bin/bash -xe virtualenv venv source venv/bin/activate pip install -r requirements.txt -- 1.9.1