From a40755c85f3ed024cbd5b7966311f7ad1f1984a6 Mon Sep 17 00:00:00 2001 From: Hunter Loftis Date: Wed, 12 Oct 2016 19:41:15 -0400 Subject: [PATCH] fix multi buildpack export typo --- lib/environment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/environment.sh b/lib/environment.sh index 50f1af237..92766c0ef 100644 --- a/lib/environment.sh +++ b/lib/environment.sh @@ -42,6 +42,6 @@ write_profile() { write_export() { local bp_dir="$1" local build_dir="$2" - echo "export PATH=\"$build_dir/.heroku/node/bin:\"$build_dir/.heroku/yarn/bin:\$PATH:$build_dir/node_modules/.bin\"" > $bp_dir/export + echo "export PATH=\"$build_dir/.heroku/node/bin:$build_dir/.heroku/yarn/bin:\$PATH:$build_dir/node_modules/.bin\"" > $bp_dir/export echo "export NODE_HOME=\"$build_dir/.heroku/node\"" >> $bp_dir/export }