Fixes all notarization issues (#4835)

Fixes all notarization issues
This commit is contained in:
Clinton Wolfe 2020-01-27 10:31:00 -05:00 committed by GitHub
commit 1ac26b3477
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View file

@ -66,7 +66,7 @@ end
package :pkg do
identifier "com.getchef.pkg.inspec"
signing_identity "Developer ID Installer: Chef Software, Inc. (EU3VF8YLX2)"
signing_identity "Chef Software, Inc. (EU3VF8YLX2)"
end
compress :dmg

View file

@ -52,4 +52,10 @@ build do
appbundle "inspec", env: env
end
end
block "Delete test folder from problem gems" do
env["VISUAL"] = "echo"
gem_install_dir = shellout!("#{install_dir}/embedded/bin/gem open rubyzip", env: env).stdout.chomp
remove_directory "#{gem_install_dir}/test"
end
end