From 52ba388be8044389c159e37f7399c5d0c8504ca1 Mon Sep 17 00:00:00 2001 From: Tom Robinson <tlrobinson@gmail.com> Date: Mon, 24 Oct 2016 12:15:38 -0700 Subject: [PATCH] Update bin/heroku/deploy to use node buildpack branch with yarn support --- bin/heroku/deploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/heroku/deploy b/bin/heroku/deploy index f5a168d495e..65d433c3168 100755 --- a/bin/heroku/deploy +++ b/bin/heroku/deploy @@ -47,7 +47,7 @@ git_remote_ref="refs/heads/master" if ! heroku ps -a "$heroku_app_name" > /dev/null; then heroku apps:create -n --addons "heroku-postgresql:hobby-dev" "$heroku_app_name" heroku buildpacks:clear -a "$heroku_app_name" - heroku buildpacks:add "https://github.com/heroku/heroku-buildpack-nodejs" -a "$heroku_app_name" + heroku buildpacks:add "https://github.com/heroku/heroku-buildpack-nodejs#yarn" -a "$heroku_app_name" heroku buildpacks:add "https://github.com/heroku/heroku-buildpack-clojure" -a "$heroku_app_name" fi -- GitLab