Delete update-remote-user.js

This commit is contained in:
syuilo 2018-11-09 19:05:16 +09:00 committed by GitHub
parent ac8817ef34
commit f7c596beac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
});