aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Exenifix <[email protected]>2022-07-24 12:05:11 +0300
committerGravatar GitHub <[email protected]>2022-07-24 12:05:11 +0300
commit13886286414b3603d423f054b91a51cb5f0029d2 (patch)
tree15bd4494117a0eb8c95e2791c77ab25e3bfa98cd
parentChanged "requirements" to external dependencies (diff)
Removed unnecessary combination
Co-authored-by: Robin <[email protected]>
-rw-r--r--pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md b/pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md
index 5e2e40a3..67542f20 100644
--- a/pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md
+++ b/pydis_site/apps/content/resources/guides/python-guides/docker-hosting-guide.md
@@ -145,7 +145,8 @@ destroyed, we need to use *volumes* that basically save the files from directory
1. Create a new directory somewhere and copy path to it
```shell
-$ mkdir mybot-data && echo $(pwd)/mybot-data
+$ mkdir mybot-data
+$ echo $(pwd)/mybot-data
```
My path is `/home/exenifix/mybot-data`, yours is most likely different.