1
0
Fork 0

change spawn path

refactor/models
Matthew 2019-12-20 12:29:28 -05:00
parent efc17189c0
commit 9b7b5ee03d
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 1 additions and 1 deletions

View File

@ -30,6 +30,6 @@ export default async function storage(client: Client) {
storageGo.stderr.on('data', (data) => client.signale.log(data));
storageGo.on('exit', (code) => {
client.signale.log(`Go storage func exited with code ${code}, restarting`);
storageGo = spawn('./storage', []);
storageGo = spawn('../bin/storage', []);
});
}