1
0
Fork 0

Use `'` instead of `'` for passwords in the documentation (see #1453)

This commit is contained in:
Nathanaël J 2018-12-04 14:23:28 +01:00 committed by Chocobozzz
parent b9fffa297f
commit 9024bece9a
1 changed files with 2 additions and 2 deletions

View 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. The wrapper can keep track of instances you have an account on. We limit to one account per instance for now.
```bash ```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 $ peertube auth list
┌──────────────────────────────┬──────────────────────────────┐ ┌──────────────────────────────┬──────────────────────────────┐
│ instance │ login │ │ 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 \ $ node dist/server/tools/peertube-import-videos.js \
-u "PEERTUBE_URL" \ -u "PEERTUBE_URL" \
-U "PEERTUBE_USER" \ -U "PEERTUBE_USER" \
--password "PEERTUBE_PASSWORD" \ --password 'PEERTUBE_PASSWORD' \
-t "TARGET_URL" -t "TARGET_URL"
``` ```