mirror of https://github.com/Chocobozzz/PeerTube
Fix peertube CLI documentation
parent
cf405589f0
commit
bb8f7872f5
|
@ -78,7 +78,11 @@ getSettings()
|
||||||
password: program['password']
|
password: program['password']
|
||||||
}
|
}
|
||||||
|
|
||||||
run(user, program['url']).catch(err => console.error(err))
|
run(user, program['url'])
|
||||||
|
.catch(err => {
|
||||||
|
console.error(err)
|
||||||
|
process.exit(-1)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
async function promptPassword () {
|
async function promptPassword () {
|
||||||
|
@ -112,8 +116,12 @@ async function run (user, url: string) {
|
||||||
secret: res.body.client_secret
|
secret: res.body.client_secret
|
||||||
}
|
}
|
||||||
|
|
||||||
const res2 = await login(url, client, user)
|
try {
|
||||||
accessToken = res2.body.access_token
|
const res = await login(program[ 'url' ], client, user)
|
||||||
|
accessToken = res.body.access_token
|
||||||
|
} catch (err) {
|
||||||
|
throw new Error('Cannot authenticate. Please check your username/password.')
|
||||||
|
}
|
||||||
|
|
||||||
const youtubeDL = await safeGetYoutubeDL()
|
const youtubeDL = await safeGetYoutubeDL()
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,8 @@ $ npm run build:server
|
||||||
|
|
||||||
### CLI wrapper
|
### CLI wrapper
|
||||||
|
|
||||||
The wrapper provides a convenient interface to the following scripts. You can access it as `peertube` via an alias in your `.bashrc` like `alias peertube="node /your/peertube/directory/dist/server/tools/peertube.js"`:
|
The wrapper provides a convenient interface to the following scripts.
|
||||||
|
You can access it as `peertube` via an alias in your `.bashrc` like `alias peertube="cd /your/peertube/directory/ && node ./dist/server/tools/peertube.js"` (you have to keep the `cd` command):
|
||||||
|
|
||||||
```
|
```
|
||||||
Usage: peertube [command] [options]
|
Usage: peertube [command] [options]
|
||||||
|
|
Loading…
Reference in New Issue