Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion habitat/plan.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ $pkg_maintainer="The Chef Maintainers <humans@chef.io>"

$pkg_deps=@(
"core/ruby3_4-plus-devkit"
"core/git"
"core/libarchive"
"core/zlib"
)
$pkg_build_deps=@(
"core/git"
)
$pkg_bin_dirs=@("bin"
"vendor/bin")
$project_root= (Resolve-Path "$PLAN_CONTEXT/../").Path
Expand Down
3 changes: 2 additions & 1 deletion habitat/plan.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ export HAB_REFRESH_CHANNEL="base-2025"
pkg_name=chef-cli
pkg_origin=chef
ruby_pkg="core/ruby3_4"
pkg_deps=(${ruby_pkg} core/coreutils core/libarchive core/git)
pkg_deps=(${ruby_pkg} core/coreutils core/libarchive)
pkg_build_deps=(
core/make
core/sed
core/gcc
core/git
)
pkg_bin_dirs=(bin)

Expand Down
Loading