From 3287920a6dbb61400f08293f7149a452ec83f8ad Mon Sep 17 00:00:00 2001 From: Imran Iqbal Date: Fri, 15 Jul 2022 19:04:28 +0100 Subject: [PATCH] feat(bin/kitchen): fix `rubocop` violations ``` 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 '\ ^ ``` --- ssf/files/default/bin/kitchen | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ssf/files/default/bin/kitchen b/ssf/files/default/bin/kitchen index dcfdb4ca..5d5663e2 100755 --- a/ssf/files/default/bin/kitchen +++ b/ssf/files/default/bin/kitchen @@ -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