#
# Cookbook:: irrigate-vector
# Recipe:: default
#
# Copyright:: 2017, The Orchard, All Rights Reserved.

if platform_family?('windows')
  directory 'c:\orchinstall' do
    action :create
    recursive true
  end

  cookbook_file 'c:\orchinstall\gitinstall.inf' do
    source 'gitinstall.conf'
    action :create
  end

  windows_package 'git' do
    source node['vector']['windows_git_pkg_url']
    checksum node['vector']['windows_git_pkg_sha']
    installer_type :custom
    options '/SILENT /LOADINF="C:\orchinstall\gitinstall.inf"'
  end
end
# vim: ts=2 sw=2 sts=2 et
