summaryrefslogtreecommitdiff
path: root/src/tools/resync-remote-user.ts
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2019-01-26 16:56:05 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2019-01-26 16:56:05 +0900
commit5a795c4ab2cbf6d7f656b63a1989d133f1cb3b08 (patch)
tree608869b2e79d5aaab704502cf978c2cfe3b931d3 /src/tools/resync-remote-user.ts
parentRemove whiteP and blackP from Reversi (#3736) (diff)
downloadsharkey-5a795c4ab2cbf6d7f656b63a1989d133f1cb3b08.tar.gz
sharkey-5a795c4ab2cbf6d7f656b63a1989d133f1cb3b08.tar.bz2
sharkey-5a795c4ab2cbf6d7f656b63a1989d133f1cb3b08.zip
tools/resync-remote-user で exit しないように (#3990)
Diffstat (limited to 'src/tools/resync-remote-user.ts')
-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);
});