diff options
author | Chocobozzz <me@florianbigard.com> | 2020-07-30 15:34:00 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-07-31 11:32:04 +0200 |
commit | f4659d73fb2d81c9a8f8d1f592ca873b622a194b (patch) | |
tree | 0aabe83d9c250c2e2951c50857d79faf2b582b4a /scripts/reset-password.ts | |
parent | f0af38e69677d1afe17e48b3f5267128db3db1a4 (diff) | |
download | PeerTube-f4659d73fb2d81c9a8f8d1f592ca873b622a194b.tar.gz PeerTube-f4659d73fb2d81c9a8f8d1f592ca873b622a194b.tar.zst PeerTube-f4659d73fb2d81c9a8f8d1f592ca873b622a194b.zip |
Don't run in parallel cli and plugin tests
Diffstat (limited to 'scripts/reset-password.ts')
-rwxr-xr-x | scripts/reset-password.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/reset-password.ts b/scripts/reset-password.ts index bf6535cea..6372095d6 100755 --- a/scripts/reset-password.ts +++ b/scripts/reset-password.ts | |||
@@ -21,7 +21,7 @@ initDatabaseModels(true) | |||
21 | }) | 21 | }) |
22 | .then(user => { | 22 | .then(user => { |
23 | if (!user) { | 23 | if (!user) { |
24 | console.error('User unknown.') | 24 | console.error('Unknown user.') |
25 | process.exit(-1) | 25 | process.exit(-1) |
26 | } | 26 | } |
27 | 27 | ||