summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCrae <john.mccrae@progress.com>2022-10-21 15:02:49 +0600
committerJohn McCrae <john.mccrae@progress.com>2022-10-21 15:02:49 +0600
commit34ff982a0342a83d7e680dd37f100b8e6e03c11f (patch)
tree51bb7385853359621fd65d49868772964a276181
parent96fb8ff3dc7f1f4e6e35c06cb493172c0d722de1 (diff)
downloadchef-34ff982a0342a83d7e680dd37f100b8e6e03c11f.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.ps12
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 {