summaryrefslogtreecommitdiff
path: root/priv/templates
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-06-22 02:29:49 +0300
committerrinpatch <rinpatch@sdf.org>2019-06-22 02:29:49 +0300
commitf4009b6706781f7d6caf75a29cc6e700e7c7e88f (patch)
tree977456db656b7cc9ad867488c09502b3e0cf17b3 /priv/templates
parent55742d978d15bba75bcae9c6f2d91afbb77d0dc5 (diff)
downloadpleroma-f4009b6706781f7d6caf75a29cc6e700e7c7e88f.tar.gz
pleroma-f4009b6706781f7d6caf75a29cc6e700e7c7e88f.zip
Fallback to Config if Mix.Config does not exist, even if Config does not
exist either For some weird reason Code.ensure_loaded?(Config) is false on OTP releases even though `use Config` from config files works just fine.
Diffstat (limited to 'priv/templates')
-rw-r--r--priv/templates/sample_config.eex2
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/templates/sample_config.eex b/priv/templates/sample_config.eex
index 526593d0a..8cadb995e 100644
--- a/priv/templates/sample_config.eex
+++ b/priv/templates/sample_config.eex
@@ -3,7 +3,7 @@
# NOTE: This file should not be committed to a repo or otherwise made public
# without removing sensitive information.
-<%= if Code.ensure_loaded?(Config) do
+<%= if Code.ensure_loaded?(Config) or not Code.ensure_loaded?(Mix.Config) do
"import Config"
else
"use Mix.Config"