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
67f4c423
Commit
67f4c423
authored
Feb 09, 2016
by
Kenneth Reitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
further output improvement
parent
ffb89feb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
pip-install
bin/steps/pip-install
+2
-2
python
bin/steps/python
+2
-2
No files found.
bin/steps/pip-install
View file @
67f4c423
...
@@ -9,9 +9,9 @@ set +e
...
@@ -9,9 +9,9 @@ set +e
PIP_STATUS="${PIPESTATUS[0]}"
PIP_STATUS="${PIPESTATUS[0]}"
set -e
set -e
show-warnings
if [[ ! $PIP_STATUS -eq 0 ]]; then
if [[ ! $PIP_STATUS -eq 0 ]]; then
echo
show-warnings
exit 1
exit 1
fi
fi
...
...
bin/steps/python
View file @
67f4c423
...
@@ -5,7 +5,7 @@ PYTHON_VERSION=$(cat runtime.txt)
...
@@ -5,7 +5,7 @@ PYTHON_VERSION=$(cat runtime.txt)
if [ -f .heroku/python-version ]; then
if [ -f .heroku/python-version ]; then
if [ ! $(cat .heroku/python-version) = $PYTHON_VERSION ]; then
if [ ! $(cat .heroku/python-version) = $PYTHON_VERSION ]; then
bpwatch start uninstall_python
bpwatch start uninstall_python
puts-step "Found
runtime
$(cat .heroku/python-version), removing"
puts-step "Found $(cat .heroku/python-version), removing"
rm -fr .heroku/python
rm -fr .heroku/python
bpwatch stop uninstall_python
bpwatch stop uninstall_python
else
else
...
@@ -23,7 +23,7 @@ fi
...
@@ -23,7 +23,7 @@ fi
if [ ! "$SKIP_INSTALL" ]; then
if [ ! "$SKIP_INSTALL" ]; then
bpwatch start install_python
bpwatch start install_python
puts-step "Installing
runtime ($PYTHON_VERSION)
"
puts-step "Installing
$PYTHON_VERSION
"
# Prepare destination directory.
# Prepare destination directory.
mkdir -p .heroku/python
mkdir -p .heroku/python
...
...
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