mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
Trying, AGAIN, to exclude symlinks from json_schemer gem.
Signed-off-by: Ryan Davis <zenspider@chef.io>
This commit is contained in:
parent
f0b9dde4af
commit
45db70f673
1 changed files with 3 additions and 1 deletions
|
@ -54,7 +54,9 @@ function Invoke-Build {
|
|||
|
||||
function Invoke-Install {
|
||||
Write-BuildLine "** Copy built & cached gems to install directory"
|
||||
Copy-Item -Path "$HAB_CACHE_SRC_PATH/$pkg_dirname/*" -Destination $pkg_prefix -Recurse -Force -Exclude @("gem_make.out", "mkmf.log", "Makefile")
|
||||
Copy-Item -Path "$HAB_CACHE_SRC_PATH/$pkg_dirname/*" -Destination $pkg_prefix -Recurse -Force -Exclude @("gem_make.out", "mkmf.log", "Makefile",
|
||||
"*/latest", "latest",
|
||||
"*/JSON-Schema-Test-Suite", "JSON-Schema-Test-Suite")
|
||||
|
||||
try {
|
||||
Push-Location $pkg_prefix
|
||||
|
|
Loading…
Reference in a new issue