diff options
author | Claire <claire.github-309c@sitedethib.com> | 2023-01-13 10:17:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-13 10:17:07 +0100 |
commit | a3a5aa159783c7361771a32b97030f05fb40e574 (patch) | |
tree | e001562ebd0df93a6a64339b914bbb229125ddf1 /lib | |
parent | f4a6365f55c3b16494337e0880b42108cc4a171a (diff) |
Fix incorrect env file generation in mastodon:setup (#23072)
Regression from #23012
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 cd6d1bcab..32040feec 100644 --- a/lib/tasks/mastodon.rake +++ b/lib/tasks/mastodon.rake @@ -399,7 +399,7 @@ namespace :mastodon do escaped = dotenv_escape(value) incompatible_syntax = true if value != escaped - escaped + "#{key}=#{escaped}" end.join("\n") generated_header = "# Generated with mastodon:setup on #{Time.now.utc}\n\n".dup |