diff options
author | Alejandro Martinez Ruiz <amr@redhat.com> | 2018-04-23 15:03:58 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-04-23 16:03:58 +0200 |
commit | 06817b3c1fdcc9c2b3484478588cc348a4a06537 (patch) | |
tree | 567f12af6f1bdd96fa75f5bb972740b34aaf3a72 /lib | |
parent | 3ccca6cece51fd071fed8c1e05af6a48c00c8897 (diff) |
tasks/mastodon: fix prompt for Redis password (#7241)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tasks/mastodon.rake | 2 |
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 |