diff options
author | John McCrae <john.mccrae@progress.com> | 2022-10-21 15:02:49 +0600 |
---|---|---|
committer | John McCrae <john.mccrae@progress.com> | 2022-10-21 15:02:49 +0600 |
commit | 34ff982a0342a83d7e680dd37f100b8e6e03c11f (patch) | |
tree | 51bb7385853359621fd65d49868772964a276181 | |
parent | 96fb8ff3dc7f1f4e6e35c06cb493172c0d722de1 (diff) | |
download | chef-jfm/chef17_ansidecl.tar.gz |
Adding tracing to get more detail on the gem install failuresjfm/chef17_ansidecl
Signed-off-by: John McCrae <john.mccrae@progress.com>
-rw-r--r-- | habitat/plan.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/habitat/plan.ps1 b/habitat/plan.ps1 index 92fedfbc60..e5469d5dd5 100644 --- a/habitat/plan.ps1 +++ b/habitat/plan.ps1 @@ -97,7 +97,7 @@ function Invoke-Build { bundle exec rake install:local # this needs to be 'bundle exec'd because a Rakefile makes reference to Bundler if (-not $?) { Write-Warning " -- That didn't work. Let's try again." - bundle exec rake install:local # this needs to be 'bundle exec'd because a Rakefile makes reference to Bundler + bundle exec rake install:local --trace # this needs to be 'bundle exec'd because a Rakefile makes reference to Bundler if (-not $?) { throw "unable to install the gems that live in directories within this repo" } } } finally { |