diff options
author | Matthew Draper <matthew@trebex.net> | 2018-07-25 04:10:29 +0930 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-25 04:10:29 +0930 |
commit | ec387c6dd975fecea69db2ed9ff0c090ac59cf83 (patch) | |
tree | b3720e23e2f1832c894f75a167a57bcf4ef5259b /actionpack/lib/action_dispatch | |
parent | 48c287d1963fba09cf620527d35519f67d5ca01a (diff) | |
parent | 2e194d0c9edfa54cb955b48fa204de2f4c980239 (diff) | |
download | rails-ec387c6dd975fecea69db2ed9ff0c090ac59cf83.tar.gz rails-ec387c6dd975fecea69db2ed9ff0c090ac59cf83.tar.bz2 rails-ec387c6dd975fecea69db2ed9ff0c090ac59cf83.zip |
Merge pull request #33229 from albertoalmagro/albertoalmagro/prefer-rails-command-over-bin-rails
Prefer rails command over bin/rails
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/templates/rescues/invalid_statement.html.erb | 2 | ||||
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/templates/rescues/invalid_statement.text.erb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/templates/rescues/invalid_statement.html.erb b/actionpack/lib/action_dispatch/middleware/templates/rescues/invalid_statement.html.erb index 056d99b03f..e8454acfad 100644 --- a/actionpack/lib/action_dispatch/middleware/templates/rescues/invalid_statement.html.erb +++ b/actionpack/lib/action_dispatch/middleware/templates/rescues/invalid_statement.html.erb @@ -11,7 +11,7 @@ <h2> <%= h @exception.message %> <% if @exception.message.match? %r{#{ActiveStorage::Blob.table_name}|#{ActiveStorage::Attachment.table_name}} %> - <br />To resolve this issue run: bin/rails active_storage:install + <br />To resolve this issue run: rails active_storage:install <% end %> </h2> diff --git a/actionpack/lib/action_dispatch/middleware/templates/rescues/invalid_statement.text.erb b/actionpack/lib/action_dispatch/middleware/templates/rescues/invalid_statement.text.erb index 033518cf8a..e5e3196710 100644 --- a/actionpack/lib/action_dispatch/middleware/templates/rescues/invalid_statement.text.erb +++ b/actionpack/lib/action_dispatch/middleware/templates/rescues/invalid_statement.text.erb @@ -5,7 +5,7 @@ <%= @exception.message %> <% if @exception.message.match? %r{#{ActiveStorage::Blob.table_name}|#{ActiveStorage::Attachment.table_name}} %> -To resolve this issue run: bin/rails active_storage:install +To resolve this issue run: rails active_storage:install <% end %> <%= render template: "rescues/_source" %> |