This commit is contained in:
loicbersier 2019-07-17 23:35:27 +02:00
parent 06f9ee8985
commit dddef5aad5

View file

@ -39,7 +39,7 @@ class dectalkCommand extends Command {
return message.channel.send({files: ['./dectalk/dectalk.wav']});
});
} else if (process.platform == 'linux') {
exec(`wine dectalk/say.exe -w dectalk.wav "${args.decMessage}"`)
exec(`cd dectalk && wine say.exe -w dectalk.wav "${args.decMessage}"`)
.catch(err => {
return console.error(err);
})