about summary refs log tree commit diff
path: root/lib/tasks/mastodon.rake
diff options
context:
space:
mode:
authorAlejandro Martinez Ruiz <amr@redhat.com>2018-04-23 15:03:58 +0100
committerEugen Rochko <eugen@zeonfederated.com>2018-04-23 16:03:58 +0200
commit06817b3c1fdcc9c2b3484478588cc348a4a06537 (patch)
tree567f12af6f1bdd96fa75f5bb972740b34aaf3a72 /lib/tasks/mastodon.rake
parent3ccca6cece51fd071fed8c1e05af6a48c00c8897 (diff)
tasks/mastodon: fix prompt for Redis password (#7241)
Diffstat (limited to 'lib/tasks/mastodon.rake')
-rw-r--r--lib/tasks/mastodon.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/mastodon.rake b/lib/tasks/mastodon.rake
index b5a148337..7a337845e 100644
--- a/lib/tasks/mastodon.rake
+++ b/lib/tasks/mastodon.rake
@@ -109,7 +109,7 @@ namespace :mastodon do
 
         env['REDIS_PASSWORD'] = prompt.ask('Redis password:') do |q|
           q.required false
-          a.default nil
+          q.default nil
           q.modify :strip
         end