Itamae の command メソッド(execute resource)は一行で書く

結論

ダメ

execute 'foobar' do
  command 'first_awesome_command'
  command 'second_awesome_command'
end

OK

execute 'foobar' do
  command 'first_awesome_command && second_awesome_command'
end
Powered by はてなブログ