Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion habitat/plan.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ $pkg_maintainer="The Chef Maintainers <humans@chef.io>"
$pkg_deps=@(
"core/ruby3_4-plus-devkit"
"core/git"
"core/libarchive"
)
$pkg_bin_dirs=@("bin"
"vendor/bin")
Expand Down Expand Up @@ -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."
Expand Down
Loading