Skip to content

Commit

Permalink
Remove debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorw committed Jun 1, 2022
1 parent bbae320 commit 2d0e5d6
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@ if [ -f $ENV_DIR/PROJECT_PATH ]; then
PROJECT_PATH=`cat $ENV_DIR/PROJECT_PATH`
if [ -d $BUILD_DIR/$PROJECT_PATH ]; then
echo "-----> Subdir buildpack in $PROJECT_PATH"
echo `pwd`
echo $SHELL

# Optionally, unlink a folder
# Optionally, unlink a folder. This may be needed to keep Gemfiles, etc. unchanged.
UNLINK=''
if [ -f $ENV_DIR/UNLINK ]; then
UNLINK=`cat $ENV_DIR/UNLINK`
Expand Down Expand Up @@ -49,9 +47,6 @@ if [ -f $ENV_DIR/PROJECT_PATH ]; then
cp -R $TMP_DIR/. $BUILD_DIR/
echo " cleaning tmp dir $TMP_DIR"
rm -rf $TMP_DIR

echo `ls -1q $BUILD_DIR/*`

exit 0
fi
fi
Expand Down

0 comments on commit 2d0e5d6

Please sign in to comment.