summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCrae <john.mccrae@progress.com>2022-06-25 08:11:30 -0700
committerJohn McCrae <john.mccrae@progress.com>2022-06-25 08:11:30 -0700
commitafb88e6f7852bb673b43f83e63d380d3e6e33a6e (patch)
tree50d8b209b8714a83d4511597d0b73ff7ec7d0c1e
parent786715a03bfa2466800941d8edbbd5a558df8820 (diff)
downloadchef-afb88e6f7852bb673b43f83e63d380d3e6e33a6e.tar.gz
Adding tracing to tease out more details on the failure
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 {