Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix binary availabilities #8

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,6 @@ echo "$(exports "$TARGET_DIR")" > $BUILDPACK_DIR/export
topic "Configure application environment"
mkdir -p $BUILD_DIR/.profile.d
exports "\$HOME/vendor/poppler" > $BUILD_DIR/.profile.d/000_poppler.sh
echo "export PATH=/app/vendor/poppler/bin:$PATH" >> $BUILD_DIR/.profile.d/000_poppler.sh
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe you should be able to add this to the exports function, near the top of the file.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see, sorry :-(

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

solved by my last commit. Thanks!


echo ""

echo ""
5 changes: 5 additions & 0 deletions bin/release
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash

echo "---"
echo "config_vars:"
echo " PATH: $PATH:/app/vendor/poppler/bin"