From 5a53d71e401509982c6f74af0928030406444275 Mon Sep 17 00:00:00 2001 From: Zev Eisenberg Date: Fri, 4 Dec 2020 10:35:31 -0500 Subject: [PATCH] Bundle install from root, pod install from Examples. --- scripts/bootstrap | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/bootstrap b/scripts/bootstrap index 8525e5eb..61057d06 100755 --- a/scripts/bootstrap +++ b/scripts/bootstrap @@ -9,8 +9,9 @@ if ! command -v bundle > /dev/null; then exit 1 fi -cd "$(dirname "$0")/../Examples" - bundle config set path 'vendor/bundle' -bundle install +bundle install + +cd "Examples" + bundle exec pod install