diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-11-09 19:05:16 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-09 19:05:16 +0900 |
| commit | f7c596beacfdace9d4602df63836a4a6bc0de0f9 (patch) | |
| tree | ee6920e65ab417efd3ec55238b43b71f4466ddf3 /cli | |
| parent | [Client] Fix bug (diff) | |
| download | sharkey-f7c596beacfdace9d4602df63836a4a6bc0de0f9.tar.gz sharkey-f7c596beacfdace9d4602df63836a4a6bc0de0f9.tar.bz2 sharkey-f7c596beacfdace9d4602df63836a4a6bc0de0f9.zip | |
Delete update-remote-user.js
Diffstat (limited to 'cli')
| -rw-r--r-- | cli/update-remote-user.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/cli/update-remote-user.js b/cli/update-remote-user.js deleted file mode 100644 index b50cddddbe..0000000000 --- a/cli/update-remote-user.js +++ /dev/null @@ -1,12 +0,0 @@ -const updatePerson = require('../built/remote/activitypub/models/person').updatePerson; - -const args = process.argv.slice(2); -const user = args[0]; - -console.log(`Updating ${user}...`); - -updatePerson(user).then(() => { - console.log(`Updated ${user}`); -}, e => { - console.error(e); -}); |