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
d94f4c5b
Commit
d94f4c5b
authored
10 years ago
by
Kenneth Reitz
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into builds
parents
758941d1
8be04ea6
Branches
master
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bin/steps/collectstatic
+6
-2
6 additions, 2 deletions
bin/steps/collectstatic
bin/utils
+27
-17
27 additions, 17 deletions
bin/utils
with
33 additions
and
19 deletions
bin/steps/collectstatic
+
6
−
2
View file @
d94f4c5b
...
...
@@ -10,19 +10,23 @@ MANAGE_FILE=${MANAGE_FILE:-fakepath}
if
[
!
"
$DISABLE_COLLECTSTATIC
"
]
&&
[
-f
"
$MANAGE_FILE
"
]
;
then
set
+e
echo
"-----> Preparing static assets"
# Check if collectstatic is configured properly.
python
$MANAGE_FILE
collectstatic
--dry-run
--noinput
&> /dev/null
&&
RUN_COLLECTSTATIC
=
true
# Compile assets if collectstatic appears to be kosher.
if
[
"
$RUN_COLLECTSTATIC
"
]
;
then
echo
"
-----> C
ollect
ing
static
files
"
echo
"
Running c
ollectstatic
...
"
python
$MANAGE_FILE
collectstatic
--noinput
2>&1 |
sed
'/^Copying/d;/^$/d;/^ /d'
| indent
[
$?
-ne
0
]
&&
{
echo
" ! Error running manage.py collectstatic. More info:"
echo
" ! Error running
'
manage.py collectstatic
'
. More info:"
echo
" http://devcenter.heroku.com/articles/django-assets"
}
else
echo
" Collectstatic configuration error. To debug, run:"
echo
"
$
heroku run python
$MANAGE_FILE
collectstatic --noinput"
fi
echo
...
...
This diff is collapsed.
Click to expand it.
bin/utils
+
27
−
17
View file @
d94f4c5b
...
...
@@ -17,49 +17,59 @@ cleanup() {
}
# Buildpack Steps.
function
puts-step
(){
puts-step()
{
echo "-----> $@"
}
# Buildpack Warnings.
function
puts-warn
(){
puts-warn()
{
echo " ! $@"
}
# Usage: $ set-env key value
function
set-env
(){
set-env()
{
echo "export $1=$2" >> $PROFILE_PATH
}
# Usage: $ set-default-env key value
function
set-default-env
(){
set-default-env()
{
echo "export $1=\${$1:-$2}" >> $PROFILE_PATH
}
# Usage: $ set-default-env key value
function
un-set-env
(){
un-set-env()
{
echo "unset $1" >> $PROFILE_PATH
}
# Does some serious copying.
function deep-cp (){
find -H $1 -maxdepth 1 -name '.*' -a \( -type d -o -type f -o -type l \) -exec cp -a '{}' $2 \;
cp -r $1/!(tmp) $2
# echo copying $1 to $2
deep-cp() {
declare source="$1" target="$2"
mkdir -p "$target"
# cp doesn't like being called without source params,
# so make sure they expand to something first.
# subshell to avoid surprising caller with shopts.
(
shopt -s nullglob dotglob
set -- "$source"/!(tmp|.|..)
[[ $# == 0 ]] || cp -a "$@" "$target"
)
}
# Does some serious moving.
function deep-mv (){
deep-cp $1 $2
rm -fr $1/!(tmp)
find -H $1 -maxdepth 1 -name '.*' -a \( -type d -o -type f -o -type l \) -exec rm -fr '{}' \;
deep-mv() {
deep-cp "$1" "$2"
deep-rm "$1"
}
# Does some serious deleting.
function deep-rm (){
rm -fr $1/!(tmp)
find -H $1 -maxdepth 1 -name '.*' -a \( -type d -o -type f -o -type l \) -exec rm -fr '{}' \;
deep-rm() {
# subshell to avoid surprising caller with shopts.
(
shopt -s dotglob
rm -rf "$1"/!(tmp|.|..)
)
}
...
...
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