cookstyle icon indicating copy to clipboard operation
cookstyle copied to clipboard

Execute resource used to run git commands

Open tas50 opened this issue 5 years ago • 0 comments

What category of cop is this?:

Please try to select as few as possible.

  • [ ] Deprecation - A cop that alerts to a deprecation in the Chef Infra Client
  • [ ] Correctness - A cop that alerts when incorrect coding behavior is being used
  • [ ] Sharing - A cop that alerts to missing functionality necessary for sharing cookboooks with others
  • [ ] Style - A cop that alerts to a style best practice
  • [ ] Simplification - A cop that alerts to ways code can be simplified through refactoring
  • [ ] Effortless - A cop that alerts on code that must be resolved to move to the Effortless pattern
  • [ ] Policyfiles - A cop that alerts on code that must be resolved to move to the Policyfiles pattern

Describe the new cop:

People shouldn't use execute for something the git resource can do better

What it would trigger on:

execute 'git clone https://github.com/git/git.git' do
  action :run
end

tas50 avatar Aug 09 '19 20:08 tas50