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
5c9412fc
Commit
5c9412fc
authored
Apr 26, 2013
by
Steven Skoczen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moves cache storage until after the post_compile hook.
parent
825c9329
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
compile
bin/compile
+6
-6
No files found.
bin/compile
View file @
5c9412fc
...
@@ -169,12 +169,6 @@ source $BIN_DIR/steps/collectstatic
...
@@ -169,12 +169,6 @@ source $BIN_DIR/steps/collectstatic
# ### Finalize
# ### Finalize
#
#
# Store new artifacts in cache.
for
dir
in
$CACHED_DIRS
;
do
rm
-rf
$CACHE_DIR
/
$dir
cp
-R
$dir
$CACHE_DIR
/
done
# Set context environment variables.
# Set context environment variables.
set-env PATH
'$HOME/.heroku/python/bin:$PATH'
set-env PATH
'$HOME/.heroku/python/bin:$PATH'
set-env PYTHONUNBUFFERED
true
set-env PYTHONUNBUFFERED
true
...
@@ -189,6 +183,12 @@ set-default-env PYTHONPATH /app/
...
@@ -189,6 +183,12 @@ set-default-env PYTHONPATH /app/
# Experimental post_compile hook.
# Experimental post_compile hook.
source
$BIN_DIR
/steps/hooks/post_compile
source
$BIN_DIR
/steps/hooks/post_compile
# Store new artifacts in cache.
for
dir
in
$CACHED_DIRS
;
do
rm
-rf
$CACHE_DIR
/
$dir
cp
-R
$dir
$CACHE_DIR
/
done
# ### Fin.
# ### Fin.
deep-mv
$BUILD_DIR
$ORIG_BUILD_DIR
deep-mv
$BUILD_DIR
$ORIG_BUILD_DIR
...
...
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