From 5df91fbb882e96ecd248c18ba2be6f452c1e05a1 Mon Sep 17 00:00:00 2001 From: Sachin Date: Wed, 17 Dec 2025 22:05:46 +0530 Subject: [PATCH] Add core/libarchive dependency to windows plan --- habitat/plan.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/habitat/plan.ps1 b/habitat/plan.ps1 index bc4650e2..3f7da364 100644 --- a/habitat/plan.ps1 +++ b/habitat/plan.ps1 @@ -11,6 +11,7 @@ $pkg_maintainer="The Chef Maintainers " $pkg_deps=@( "core/ruby3_4-plus-devkit" "core/git" + "core/libarchive" ) $pkg_bin_dirs=@("bin" "vendor/bin") @@ -67,7 +68,7 @@ function Invoke-Install { Push-Location $pkg_prefix bundle config --local gemfile $project_root/Gemfile Write-BuildLine "** generating binstubs for chef-cli with precise version pins" - Write-BuildLine "** generating binstubs for chef-cli with precise version pins $project_root $pkg_prefix/bin " + Write-BuildLine "** generating binstubs for chef-cli with precise version pins $project_root $pkg_prefix/bin " Invoke-Expression -Command "appbundler.bat $project_root $pkg_prefix/bin chef-cli" If ($lastexitcode -ne 0) { Exit $lastexitcode } Write-BuildLine " ** Running the chef-cli project's 'rake install' to install the path-based gems so they look like any other installed gem."