Skip to content

Commit

Permalink
feat(bin/kitchen): fix rubocop violations
Browse files Browse the repository at this point in the history
```
bin/kitchen:22:57: C: [Correctable] Layout/LineContinuationSpacing: Use one space in front of backslash.
      'Your `bin/bundle` was not generated by Bundler, '\
                                                        ^
bin/kitchen:23:70: C: [Correctable] Layout/LineContinuationSpacing: Use one space in front of backslash.
      'so this binstub cannot run.  Replace `bin/bundle` by running '\
                                                                     ^
```
  • Loading branch information
myii committed Jul 15, 2022
1 parent c70077b commit 3287920
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ssf/files/default/bin/kitchen
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ if File.file?(bundle_binstub)
load(bundle_binstub)
else
abort(
'Your `bin/bundle` was not generated by Bundler, '\
'so this binstub cannot run. Replace `bin/bundle` by running '\
'Your `bin/bundle` was not generated by Bundler, ' \
'so this binstub cannot run. Replace `bin/bundle` by running ' \
'`bundle binstubs bundler --force`, then run this command again.'
)
end
Expand Down

0 comments on commit 3287920

Please sign in to comment.