about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2023-01-13 10:17:07 +0100
committerGitHub <noreply@github.com>2023-01-13 10:17:07 +0100
commita3a5aa159783c7361771a32b97030f05fb40e574 (patch)
treee001562ebd0df93a6a64339b914bbb229125ddf1 /lib
parentf4a6365f55c3b16494337e0880b42108cc4a171a (diff)
Fix incorrect env file generation in mastodon:setup (#23072)
Regression from #23012
Diffstat (limited to 'lib')
-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 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