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
57ec0c38
Commit
57ec0c38
authored
6 years ago
by
Ally Weir
Browse files
Options
Downloads
Patches
Plain Diff
Fix shellcheck linting issues
parent
f1e1df2f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
bin/steps/collectstatic
+1
-1
1 addition, 1 deletion
bin/steps/collectstatic
bin/steps/pip-install
+1
-1
1 addition, 1 deletion
bin/steps/pip-install
bin/steps/pip-uninstall
+1
-1
1 addition, 1 deletion
bin/steps/pip-uninstall
bin/steps/pipenv
+1
-1
1 addition, 1 deletion
bin/steps/pipenv
with
4 additions
and
4 deletions
bin/steps/collectstatic
+
1
−
1
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
)
...
...
This diff is collapsed.
Click to expand it.
bin/steps/pip-install
+
1
−
1
View file @
57ec0c38
#!/usr/bin/env bash
# shellcheck source=bin/utils
source
$BIN_DIR
/utils
source
"
$BIN_DIR
/utils
"
if
[
!
"
$SKIP_PIP_INSTALL
"
]
;
then
...
...
This diff is collapsed.
Click to expand it.
bin/steps/pip-uninstall
+
1
−
1
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
...
...
This diff is collapsed.
Click to expand it.
bin/steps/pipenv
+
1
−
1
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
...
...
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