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
57ec0c38
Commit
57ec0c38
authored
May 24, 2018
by
Ally Weir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix shellcheck linting issues
parent
f1e1df2f
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 @
57ec0c38
...
...
@@ -11,7 +11,7 @@
# - $DEBUG_COLLECTSTATIC: upon failure, print out environment variables.
# shellcheck source=bin/utils
source
$BIN_DIR
/utils
source
"
$BIN_DIR
/utils"
# 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
)
...
...
bin/steps/pip-install
View file @
57ec0c38
#!/usr/bin/env bash
# shellcheck source=bin/utils
source
$BIN_DIR
/utils
source
"
$BIN_DIR
/utils"
if
[
!
"
$SKIP_PIP_INSTALL
"
]
;
then
...
...
bin/steps/pip-uninstall
View file @
57ec0c38
...
...
@@ -3,7 +3,7 @@
set
+e
# Install dependencies with Pip.
# shellcheck source=bin/utils
source
$BIN_DIR
/utils
source
"
$BIN_DIR
/utils"
if
[
!
"
$SKIP_PIP_INSTALL
"
]
;
then
...
...
bin/steps/pipenv
View file @
57ec0c38
...
...
@@ -3,7 +3,7 @@
# export CLINT_FORCE_COLOR=1
# export PIPENV_FORCE_COLOR=1
# shellcheck source=bin/utils
source
$BIN_DIR
/utils
source
"
$BIN_DIR
/utils"
set
-e
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