aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rw-r--r--lib/tasks/actiontext.rake2
2 files changed, 1 insertions, 2 deletions
diff --git a/README.md b/README.md
index 72eb6d44cf..ca6a395e8e 100644
--- a/README.md
+++ b/README.md
@@ -35,7 +35,6 @@ Assumes a Rails 5.2+ application with Active Storage and Webpacker installed.
1. Migrate the database
```
- ./bin/rails active_storage:install
./bin/rails action_text:install
./bin/rails db:migrate
```
diff --git a/lib/tasks/actiontext.rake b/lib/tasks/actiontext.rake
index 817a4c67f0..01f8697c61 100644
--- a/lib/tasks/actiontext.rake
+++ b/lib/tasks/actiontext.rake
@@ -5,7 +5,7 @@ namespace :action_text do
Rake::Task["install:migrations"].clear_comments
desc "Copy over the migration, stylesheet, and JavaScript files"
- task install: %i( environment copy_migration copy_stylesheet )
+ task install: %w( environment active_storage:install copy_migration copy_stylesheet )
task :copy_migration do
if Rake::Task.task_defined?("action_text:install:migrations")