From 01e30e938c8da157a4cf1554b373fd47783cca7c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.com> Date: Thu, 3 Jan 2013 14:05:29 -0500 Subject: [PATCH] move precompile up a bit --- bin/compile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/bin/compile b/bin/compile index 808d526d..48a5f084 100755 --- a/bin/compile +++ b/bin/compile @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +fp#!/usr/bin/env bash # This script serves as the # [**Python Buildpack**](https://github.com/heroku/heroku-buildpack-python) @@ -203,11 +203,12 @@ set-default-env PYTHONPATH /app/ un-set-env PYTHONHOME +# Experimental post_compile hook. +source $BIN_DIR/steps/hooks/post_compile + # ### Fin. deep-mv $BUILD_DIR $ORIG_BUILD_DIR deep-mv $TMP_APP_DIR $APP_DIR - -# Experimental post_compile hook. -source $BIN_DIR/steps/hooks/post_compile +cd $BUILD_DIR -- GitLab