summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCrae <john.mccrae@progress.com>2022-06-16 12:19:24 -0700
committerJohn McCrae <john.mccrae@progress.com>2022-06-16 12:19:24 -0700
commit300ae60ec4265c2018d9c19f60df98c541fd1d8c (patch)
tree928436f49f226d0a1f5068582c2b67728c0af7ed
parent5a12b58db5aee26397c907f4776fcaec3ce8606e (diff)
downloadchef-jfm/windows_plan_testing.tar.gz
Updating the logging choices to try and catch the failurejfm/windows_plan_testing
Signed-off-by: John McCrae <john.mccrae@progress.com>
-rw-r--r--habitat/plan.ps14
1 files changed, 2 insertions, 2 deletions
diff --git a/habitat/plan.ps1 b/habitat/plan.ps1
index 3e1cc0838c..cfce0816dd 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 --verbose # 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 $?) {
Write-Warning " -- That didn't work. Let's try again."
- bundle exec rake install:local --verbose # 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 {