mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:54:59 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
14 lines
507 B
Ruby
Executable File
14 lines
507 B
Ruby
Executable File
#!/usr/bin/env rake
|
|
# frozen_string_literal: true
|
|
|
|
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
|
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
|
|
|
require File.expand_path('../config/application', __FILE__)
|
|
|
|
Discourse::Application.load_tasks
|
|
|
|
# this prevents crashes when migrating a database in production in certain
|
|
# PostgreSQL configuations when trying to create structure.sql
|
|
Rake::Task["db:structure:dump"].clear if Rails.env.production?
|