forked from Supositware/Haha-Yes
fix for linux?
This commit is contained in:
parent
4be84cb798
commit
124d30b660
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ class dectalkCommand extends Command {
|
||||||
return message.channel.send({files: ['./dectalk/dectalk.wav']});
|
return message.channel.send({files: ['./dectalk/dectalk.wav']});
|
||||||
});
|
});
|
||||||
} else if (process.platform == 'linux') {
|
} 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 => {
|
.catch(err => {
|
||||||
return console.error(err);
|
return console.error(err);
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue