diff options
-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") |