diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2022-10-29 23:57:32 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2022-10-30 00:48:38 -0600 |
| commit | 6a10b70be201a98ffd3d2fb99e5f8ef237ace3d2 (patch) | |
| tree | 827cfa88ac94bd5e590c5d6f89444e889e404e4b /tasks/rubocop.rake | |
| parent | 22b98c054c940d10f5eef8db03169ac0fa5823b7 (diff) | |
switch from EOS to END as heredoc delimiter
Diffstat (limited to 'tasks/rubocop.rake')
| -rw-r--r-- | tasks/rubocop.rake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tasks/rubocop.rake b/tasks/rubocop.rake index 99b7450e..612736c4 100644 --- a/tasks/rubocop.rake +++ b/tasks/rubocop.rake @@ -7,10 +7,10 @@ begin end rescue LoadError => e task :lint do - raise <<~'EOS', cause: e + raise <<~'END', cause: e Failed to load lint task. Install required gems using: bundle --path=.bundle/gems Next, invoke Rake using: bundle exec rake - EOS + END end end |
