diff options
author | Nathanaël J <roipoussiere@protonmail.com> | 2018-12-04 14:23:28 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-12-04 17:16:59 +0100 |
commit | 9024bece9a51d3bc666ba94f272aaec186e3c278 (patch) | |
tree | 3e16f30e490f9bc55ca5832828a65443e03b5895 /support | |
parent | b9fffa297f49a84df8ffd0d7b842599bc88a8e3e (diff) | |
download | PeerTube-9024bece9a51d3bc666ba94f272aaec186e3c278.tar.gz PeerTube-9024bece9a51d3bc666ba94f272aaec186e3c278.tar.zst PeerTube-9024bece9a51d3bc666ba94f272aaec186e3c278.zip |
Use `'` instead of `'` for passwords in the documentation (see #1453)
Diffstat (limited to 'support')
-rw-r--r-- | support/doc/tools.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/doc/tools.md b/support/doc/tools.md index 5a1f212b1..98048ec41 100644 --- a/support/doc/tools.md +++ b/support/doc/tools.md | |||
@@ -82,7 +82,7 @@ The wrapper provides a convenient interface to the following scripts. You can ac | |||
82 | The wrapper can keep track of instances you have an account on. We limit to one account per instance for now. | 82 | The wrapper can keep track of instances you have an account on. We limit to one account per instance for now. |
83 | 83 | ||
84 | ```bash | 84 | ```bash |
85 | $ peertube auth add -u "PEERTUBE_URL" -U "PEERTUBE_USER" --password "PEERTUBE_PASSWORD" | 85 | $ peertube auth add -u "PEERTUBE_URL" -U "PEERTUBE_USER" --password 'PEERTUBE_PASSWORD' |
86 | $ peertube auth list | 86 | $ peertube auth list |
87 | ┌──────────────────────────────┬──────────────────────────────┐ | 87 | ┌──────────────────────────────┬──────────────────────────────┐ |
88 | │ instance │ login │ | 88 | │ instance │ login │ |
@@ -112,7 +112,7 @@ Be sure you own the videos or have the author's authorization to do so. | |||
112 | $ node dist/server/tools/peertube-import-videos.js \ | 112 | $ node dist/server/tools/peertube-import-videos.js \ |
113 | -u "PEERTUBE_URL" \ | 113 | -u "PEERTUBE_URL" \ |
114 | -U "PEERTUBE_USER" \ | 114 | -U "PEERTUBE_USER" \ |
115 | --password "PEERTUBE_PASSWORD" \ | 115 | --password 'PEERTUBE_PASSWORD' \ |
116 | -t "TARGET_URL" | 116 | -t "TARGET_URL" |
117 | ``` | 117 | ``` |
118 | 118 | ||