mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
11 lines
373 B
Ruby
11 lines
373 B
Ruby
|
Bundler::GemHelper.install_tasks(name: "inspec-bin")
|
||
|
|
||
|
desc "force install the inspec-bin gem"
|
||
|
task "install:force" do
|
||
|
sh "gem build -V inspec-bin.gemspec"
|
||
|
built_gem_path = Dir["inspec-bin-*.gem"].sort_by { |f| File.mtime(f) }.last
|
||
|
FileUtils.mkdir_p("pkg") unless Dir.exist?("pkg")
|
||
|
FileUtils.mv(built_gem_path, "pkg")
|
||
|
sh "gem install -f pkg/#{built_gem_path}"
|
||
|
end
|