#
# Cookbook:: irrigate-vector
# Recipe:: direct_delivery_git_repo
#
# Author:: Orchard IT (<it@theorchard.com>)
#

if platform_family?('windows')

  execute 'clone_direct_delivery_repo' do
    command 'c:\Git\bin\git.exe clone github.com:theorchard/direct_delivery.git'
    cwd 'c:\\'
  end

  execute 'install_requirements' do
    command 'pip install -r bin\requirements.txt'
    cwd 'c:\direct_delivery'
    not_if 'pip show google-cloud-storage'
  end

end

# vim: ts=2 sw=2 sts=2 et
