summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/resync-remote-user.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/tools/resync-remote-user.ts b/src/tools/resync-remote-user.ts
index c013de723f..4850c768a0 100644
--- a/src/tools/resync-remote-user.ts
+++ b/src/tools/resync-remote-user.ts
@@ -24,9 +24,7 @@ if (!acct.match(/^\w+@\w/)) {
console.log(`resync ${acct}`);
main(acct).then(() => {
- console.log('success');
- process.exit(0);
+ console.log('Done');
}).catch(e => {
console.warn(e);
- process.exit(1);
});