diff options
author | Bruno Wagner <bwgpro@gmail.com> | 2015-01-12 09:59:10 -0200 |
---|---|---|
committer | Bruno Wagner <bwgpro@gmail.com> | 2015-01-12 10:03:30 -0200 |
commit | 60367f159e31278ba83e75ccc39626b713c8198d (patch) | |
tree | 204320f779f244c83c0575d33939267a5abec187 | |
parent | 61f10b66d2256ede834f50765a5a9151f71b8f53 (diff) |
The install script now removes the virtualenv before creating the new one
-rwxr-xr-x | install-pixelated.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/install-pixelated.sh b/install-pixelated.sh index 5da9fd22..f7c52f53 100755 --- a/install-pixelated.sh +++ b/install-pixelated.sh @@ -46,6 +46,7 @@ LC_ALL=en_US.UTF-8 ./go build # install service dependencies cd ../service +rm -rf .virtualenv virtualenv .virtualenv source .virtualenv/bin/activate pip install -r requirements.txt |