Skip to content

Commit

Permalink
Use string instead of boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcasals authored Jan 16, 2018
1 parent 81c8214 commit 129b23c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/generators/heroku_installer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def set_seeds_for_review_apps
gsub_file("db/seeds.rb", "Decidim.seed!", <<-SEEDS_CONTENT.chomp)
if ENV["HEROKU_APP_NAME"].present?
ENV["DECIDIM_HOST"] = ENV["HEROKU_APP_NAME"] + ".herokuapp.com"
ENV["SEED"] = true
ENV["SEED"] = "true"
end
Decidim.seed!
SEEDS_CONTENT
Expand Down

0 comments on commit 129b23c

Please sign in to comment.