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
e717d0a6
Unverified
Commit
e717d0a6
authored
May 25, 2018
by
Ian Stapleton Cordasco
Committed by
GitHub
May 25, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #703 from heroku/fix-new-shellcheck-warnings
Fix new shellcheck warnings breaking periodic CI
parents
b0f49570
f0081e6f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
collectstatic
bin/steps/collectstatic
+1
-1
pip-install
bin/steps/pip-install
+1
-1
pip-uninstall
bin/steps/pip-uninstall
+1
-1
pipenv
bin/steps/pipenv
+1
-1
No files found.
bin/steps/collectstatic
View file @
e717d0a6
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
# - $DEBUG_COLLECTSTATIC: upon failure, print out environment variables.
# - $DEBUG_COLLECTSTATIC: upon failure, print out environment variables.
# shellcheck source=bin/utils
# shellcheck source=bin/utils
source
$BIN_DIR
/utils
source
"
$BIN_DIR
/utils"
# Location of 'manage.py', if it exists.
# Location of 'manage.py', if it exists.
MANAGE_FILE
=
$(
find
.
-maxdepth
3
-type
f
-name
'manage.py'
-printf
'%d\t%P\n'
|
sort
-nk1
|
cut
-f2
|
head
-1
)
MANAGE_FILE
=
$(
find
.
-maxdepth
3
-type
f
-name
'manage.py'
-printf
'%d\t%P\n'
|
sort
-nk1
|
cut
-f2
|
head
-1
)
...
...
bin/steps/pip-install
View file @
e717d0a6
#!/usr/bin/env bash
#!/usr/bin/env bash
# shellcheck source=bin/utils
# shellcheck source=bin/utils
source
$BIN_DIR
/utils
source
"
$BIN_DIR
/utils"
if
[
!
"
$SKIP_PIP_INSTALL
"
]
;
then
if
[
!
"
$SKIP_PIP_INSTALL
"
]
;
then
...
...
bin/steps/pip-uninstall
View file @
e717d0a6
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
set
+e
set
+e
# Install dependencies with Pip.
# Install dependencies with Pip.
# shellcheck source=bin/utils
# shellcheck source=bin/utils
source
$BIN_DIR
/utils
source
"
$BIN_DIR
/utils"
if
[
!
"
$SKIP_PIP_INSTALL
"
]
;
then
if
[
!
"
$SKIP_PIP_INSTALL
"
]
;
then
...
...
bin/steps/pipenv
View file @
e717d0a6
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
# export CLINT_FORCE_COLOR=1
# export CLINT_FORCE_COLOR=1
# export PIPENV_FORCE_COLOR=1
# export PIPENV_FORCE_COLOR=1
# shellcheck source=bin/utils
# shellcheck source=bin/utils
source
$BIN_DIR
/utils
source
"
$BIN_DIR
/utils"
set
-e
set
-e
if
[[
-f
Pipfile.lock
]]
;
then
if
[[
-f
Pipfile.lock
]]
;
then
...
...
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