Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3435)

Unified Diff: build_tools/pip_install.sh

Issue 845283004: Put pip bin directory at front of $PATH in pip_install.sh (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build_tools/pip_install.sh
diff --git a/build_tools/pip_install.sh b/build_tools/pip_install.sh
index 80696cd3849f8eb310db52e5100cb6351926e67e..6babd46934a034f0dee4813d0c465de8521aad44 100755
--- a/build_tools/pip_install.sh
+++ b/build_tools/pip_install.sh
@@ -16,7 +16,7 @@ cd "${SCRIPT_DIR}/.."
export PYTHONUSERBASE=$PWD/out/pip
pip_bin_dir=$PYTHONUSERBASE/bin
pip_bin=$pip_bin_dir/pip
-export PATH=$PATH:$pip_bin_dir
+export PATH=$pip_bin_dir:$PATH
if [ ! -f "$pip_bin" ]; then
# On first run install pip directly from the network
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698