Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
heroku-buildpack-python
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
heroku-buildpack-python
Commits
e3dc351e
Commit
e3dc351e
authored
Mar 23, 2018
by
Liu Junxiao
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move SKIP_PIP_INSTALL=1 after pip-uninstall step otherwise pip-uninstall will be bypassed
parent
9eddeaee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
pipenv
bin/steps/pipenv
+3
-3
No files found.
bin/steps/pipenv
View file @
e3dc351e
...
@@ -32,9 +32,6 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
...
@@ -32,9 +32,6 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
# Measure that we're using Pipenv.
# Measure that we're using Pipenv.
mcount
"tool.pipenv"
mcount
"tool.pipenv"
# Skip pip install, later.
export
SKIP_PIP_INSTALL
=
1
# Set PIP_EXTRA_INDEX_URL
# Set PIP_EXTRA_INDEX_URL
if
[[
-r
$ENV_DIR
/PIP_EXTRA_INDEX_URL
]]
;
then
if
[[
-r
$ENV_DIR
/PIP_EXTRA_INDEX_URL
]]
;
then
PIP_EXTRA_INDEX_URL
=
"
$(
cat
"
$ENV_DIR
/PIP_EXTRA_INDEX_URL"
)
"
PIP_EXTRA_INDEX_URL
=
"
$(
cat
"
$ENV_DIR
/PIP_EXTRA_INDEX_URL"
)
"
...
@@ -65,6 +62,9 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
...
@@ -65,6 +62,9 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
puts-step
"Installing test dependencies…"
puts-step
"Installing test dependencies…"
/app/.heroku/python/bin/pipenv
install
--dev
--system
--deploy
2>&1 | cleanup | indent
/app/.heroku/python/bin/pipenv
install
--dev
--system
--deploy
2>&1 | cleanup | indent
fi
fi
# Skip pip install, later.
export
SKIP_PIP_INSTALL
=
1
fi
fi
else
else
export
SKIP_PIP_INSTALL
=
1
export
SKIP_PIP_INSTALL
=
1
...
...
Liu Junxiao
@liujunxiao
mentioned in commit
8d98c27c
·
Sep 28, 2018
mentioned in commit
8d98c27c
mentioned in commit 8d98c27cac690beff8b1442ca6c6e3234c999686
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment