diff options
author | John McCrae <john.mccrae@progress.com> | 2022-07-17 16:19:30 -0700 |
---|---|---|
committer | John McCrae <john.mccrae@progress.com> | 2022-07-17 16:19:30 -0700 |
commit | 507443976d51def23edf88f2af87433a336858df (patch) | |
tree | b7a930a8132a1b134f1084f99648b26fb295ba0c | |
parent | f6bb6e8f9e7f677eb78edf54f61c68ed1e474f47 (diff) | |
download | chef-IPACK-256-missing-checksum-error.tar.gz |
starting to integrate ruby 3.1 into the buildsIPACK-256-missing-checksum-error
Signed-off-by: John McCrae <john.mccrae@progress.com>
-rw-r--r-- | habitat/plan.ps1 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/habitat/plan.ps1 b/habitat/plan.ps1 index e91b40a0f2..6a0a12b321 100644 --- a/habitat/plan.ps1 +++ b/habitat/plan.ps1 @@ -61,6 +61,10 @@ function Invoke-Prepare { $env:GEM_HOME = "$pkg_prefix/vendor" try { + Write-BuildLine " ** Where the hell is gem?" + $gems = Get-ChildItem -Path c:\ -File "gem.*" -Recurse + Write-BuildLine "Here is where Gem is installed - " $gems + Push-Location "${HAB_CACHE_SRC_PATH}/${pkg_dirname}" Write-BuildLine " ** Updating the Path and Installing Bundler" $env:Path += [System.Environment]::GetEnvironmentVariable("Path", "Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path", "User") |