From 2dfc89b0777d58ec1388ae6454310f5f0c1d4ea7 Mon Sep 17 00:00:00 2001 From: Yuval Lifshitz Date: Tue, 2 Jul 2019 15:30:31 +0300 Subject: [PATCH] make sure that virtualenv is python2 regardless of host Signed-off-by: Yuval Lifshitz --- bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index d7e66dc..fe6f569 100755 --- a/bootstrap +++ b/bootstrap @@ -34,7 +34,7 @@ elif [ -f /etc/redhat-release ]; then fi fi -virtualenv --no-site-packages --distribute virtualenv +virtualenv --python=$(which python2) --no-site-packages --distribute virtualenv # avoid pip bugs ./virtualenv/bin/pip install --upgrade pip