diff options
author | rinpatch <rinpatch@sdf.org> | 2021-01-23 19:06:42 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2021-01-23 19:06:42 +0000 |
commit | 0a6f5f479348eff5f5404d4455fcb8254809812f (patch) | |
tree | 0aae5de52e6394408036dfb54f24b4c10983a7d8 /docs/installation/debian_based_en.md | |
parent | 42e495df2b8d72365e22f8be708051130bc81973 (diff) | |
parent | 55bf090492a0e8b90cba62763d299a4c7a3cc92e (diff) | |
download | pleroma-0a6f5f479348eff5f5404d4455fcb8254809812f.tar.gz pleroma-0a6f5f479348eff5f5404d4455fcb8254809812f.zip |
Merge branch 'fix/minor-doc-fix' into 'develop'
add missing sudo prefix in some install doc
See merge request pleroma/pleroma!3276
Diffstat (limited to 'docs/installation/debian_based_en.md')
-rw-r--r-- | docs/installation/debian_based_en.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/installation/debian_based_en.md b/docs/installation/debian_based_en.md index 926a85367..c5687a01e 100644 --- a/docs/installation/debian_based_en.md +++ b/docs/installation/debian_based_en.md @@ -98,7 +98,7 @@ sudo -Hu pleroma mix deps.get * Check the configuration and if all looks right, rename it, so Pleroma will load it (`prod.secret.exs` for productive instance, `dev.secret.exs` for development instances): ```shell -mv config/{generated_config.exs,prod.secret.exs} +sudo -Hu pleroma mv config/{generated_config.exs,prod.secret.exs} ``` |