Skip to content

Commit cd9ecc2

Browse files
committed
Fixing a style issue - long strings can be long, rather than split purely for aesthetics
1 parent b9b954d commit cd9ecc2

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

chef/lib/chef/provider/git.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ def action_checkout
4242
enable_submodules
4343
@new_resource.updated = true
4444
else
45-
Chef::Log.info "Taking no action, checkout destination " +
46-
"#{@new_resource.destination} already exists or is a non-empty directory"
45+
Chef::Log.info "Taking no action, checkout destination #{@new_resource.destination} already exists or is a non-empty directory"
4746
end
4847
end
4948

0 commit comments

Comments
 (0)