From 688d00be7ee005278fad1db0f6b52050926ca8b0 Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Thu, 28 Dec 2017 15:54:37 -0500 Subject: [PATCH] Use same version of `pip` as `python` Fixes issue [1312](https://github.com/beautify-web/js-beautify/issues/1312) --- tools/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/build.sh b/tools/build.sh index b691daf66..efe249aa6 100755 --- a/tools/build.sh +++ b/tools/build.sh @@ -36,8 +36,8 @@ build_all() build_py() { - echo Building python module... - pip install -e ./python || exit 1 + echo Building python module... + /usr/bin/env python -m pip install -e ./python || exit 1 } build_js()