# # Cookbook:: kosmos-bitcoin # Recipe:: btcpay # build_essential include_recipe "git" git node['btcpay']['source_dir'] do repository node['btcpay']['repo'] revision node['btcpay']['revision'] action :sync notifies :run, 'bash[build_btcpay]', :immediately end bash 'build_btcpay' do cwd node['btcpay']['source_dir'] code './build.sh' action :nothing end