Commit 51fd8ecd authored by Zeke Sikelianos's avatar Zeke Sikelianos

Merge pull request #30 from davidjrice/preserve-env-vars

Preserve ENV vars CPATH and CPPPATH (composable buildpacks)
parents 9fe55460 537c16c5
......@@ -171,8 +171,8 @@ cp "$VENDORED_NODE/bin/node" "$BUILD_DIR/bin/node"
# setting up paths for building
PATH="$VENDORED_SCONS:$VENDORED_NODE/bin:$PATH"
INCLUDE_PATH="$VENDORED_NODE/include"
export CPATH="$INCLUDE_PATH"
export CPPPATH="$INCLUDE_PATH"
export CPATH="$INCLUDE_PATH:$CPATH"
export CPPPATH="$INCLUDE_PATH:$CPPPATH"
# install dependencies with npm
echo "-----> Installing dependencies with npm"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment