Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
heroku-buildpack-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Evili del Rio i Silvan
heroku-buildpack-python
Commits
329cd6eb
Commit
329cd6eb
authored
7 years ago
by
Kenneth Reitz
Browse files
Options
Downloads
Patches
Plain Diff
don't print extra information
Signed-off-by:
Kenneth Reitz
<
me@kennethreitz.org
>
parent
b6f042b1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bin/steps/pipenv
+3
-4
3 additions, 4 deletions
bin/steps/pipenv
with
3 additions
and
4 deletions
bin/steps/pipenv
+
3
−
4
View file @
329cd6eb
...
...
@@ -11,9 +11,9 @@ if [[ -f Pipfile.lock ]]; then
if
[[
$(
openssl dgst
-sha256
Pipfile.lock
)
==
$(
cat
.heroku/python/Pipfile.lock.sha256
)
]]
;
then
if
[[
!
"
$PIPENV_ALWAYS_INSTALL
"
]]
;
then
echo
"Skipping installation, as Pipfile.lock hasn't changed since last deploy."
| indent
echo
"To disable this functionality, run the following command:"
echo
""
echo
"
$
heroku config:set PIPENV_ALWAYS_INSTALL=1"
| indent
#
echo "To disable this functionality, run the following command:"
#
echo ""
#
echo " $ heroku config:set PIPENV_ALWAYS_INSTALL=1" | indent
export
SKIP_PIPENV_INSTALL
=
1
fi
...
...
@@ -23,7 +23,6 @@ fi
if
[
!
"
$SKIP_PIPENV_INSTALL
"
]
;
then
# Pipenv support (Generate requriements.txt with pipenv).
if
[[
-f
Pipfile
]]
;
then
# Measure that we're using Pipenv.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment