aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/reset-password.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-07-30 14:54:31 +0200
committerChocobozzz <chocobozzz@cpy.re>2020-07-31 11:32:04 +0200
commitf0af38e69677d1afe17e48b3f5267128db3db1a4 (patch)
tree98dd8c4ac07e7d77e0c46407e50a5b0f6aaecc43 /scripts/reset-password.ts
parent7abb5c5da1ed7c6945e81b9e3da0a14f623f69ea (diff)
downloadPeerTube-f0af38e69677d1afe17e48b3f5267128db3db1a4.tar.gz
PeerTube-f0af38e69677d1afe17e48b3f5267128db3db1a4.tar.zst
PeerTube-f0af38e69677d1afe17e48b3f5267128db3db1a4.zip
Fix lint
Diffstat (limited to 'scripts/reset-password.ts')
-rwxr-xr-xscripts/reset-password.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/reset-password.ts b/scripts/reset-password.ts
index 863537500..bf6535cea 100755
--- a/scripts/reset-password.ts
+++ b/scripts/reset-password.ts
@@ -53,3 +53,7 @@ initDatabaseModels(true)
53 .finally(() => process.exit(0)) 53 .finally(() => process.exit(0))
54 }) 54 })
55 }) 55 })
56 .catch(err => {
57 console.error(err)
58 process.exit(-1)
59 })