diff options
author | John <john.mccrae@progress.com> | 2023-04-20 14:42:13 -0700 |
---|---|---|
committer | John <john.mccrae@progress.com> | 2023-04-25 18:41:10 -0700 |
commit | a03e96103eba7119dcda39ddb3545d68b6e480a3 (patch) | |
tree | 1d0356025e567f168f2d87fa1314ff39f78eaf85 | |
parent | ae030f3315fb83d984160139f88ea3462cfc0c91 (diff) | |
download | chef-a03e96103eba7119dcda39ddb3545d68b6e480a3.tar.gz |
Tests are timing out, adding tracing
Signed-off-by: John <john.mccrae@progress.com>
-rw-r--r-- | habitat/plan.ps1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/habitat/plan.ps1 b/habitat/plan.ps1 index 92fedfbc60..4dced59006 100644 --- a/habitat/plan.ps1 +++ b/habitat/plan.ps1 @@ -94,10 +94,10 @@ function Invoke-Build { } } Write-BuildLine " ** Running the chef project's 'rake install' to install the path-based gems so they look like any other installed gem." - 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=stdout # 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=stdout # 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 { |