inspec/.delivery/build-cookbook/recipes/lint.rb

15 lines
329 B
Ruby
Raw Normal View History

2015-09-23 10:21:10 +00:00
#
# Cookbook Name:: build-cookbook
# Recipe:: lint
2015-09-23 10:21:10 +00:00
#
# Copyright (c) 2015 Chef Software Inc., All Rights Reserved.
# Author:: Dominik Richter
include_recipe 'build-cookbook::prepare'
execute 'rubocop' do
command 'bundle exec rake lint'
cwd node['delivery_builder']['repo']
user node['delivery_builder']['build_user']
end