]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Use `'` instead of `'` for passwords in the documentation (see #1453)
authorNathanaël J <roipoussiere@protonmail.com>
Tue, 4 Dec 2018 13:23:28 +0000 (14:23 +0100)
committerChocobozzz <me@florianbigard.com>
Tue, 4 Dec 2018 16:16:59 +0000 (17:16 +0100)
support/doc/tools.md

index 5a1f212b1f7f546ce915852715c6c9bab6334cc6..98048ec412edddfd1ee1619308d2f21940cd3197 100644 (file)
@@ -82,7 +82,7 @@ The wrapper provides a convenient interface to the following scripts. You can ac
 The wrapper can keep track of instances you have an account on. We limit to one account per instance for now.
 
 ```bash
-$ peertube auth add -u "PEERTUBE_URL" -U "PEERTUBE_USER" --password "PEERTUBE_PASSWORD"
+$ peertube auth add -u "PEERTUBE_URL" -U "PEERTUBE_USER" --password 'PEERTUBE_PASSWORD'
 $ peertube auth list
 ┌──────────────────────────────┬──────────────────────────────┐
 │ instance                     │ login                        │
@@ -112,7 +112,7 @@ Be sure you own the videos or have the author's authorization to do so.
 $ node dist/server/tools/peertube-import-videos.js \
     -u "PEERTUBE_URL" \
     -U "PEERTUBE_USER" \
-    --password "PEERTUBE_PASSWORD" \
+    --password 'PEERTUBE_PASSWORD' \
     -t "TARGET_URL"
 ```