check for nolight.png

This commit is contained in:
loicbersier 2019-07-29 23:35:31 +02:00
parent 1a85c3251f
commit ce09c7ce09

View file

@ -49,9 +49,11 @@ class nolightCommand extends Command {
});
async function apng() {
fs.unlink('./img/nolight.png', (err) => {
if (err) throw err;
});
if (fs.readFileSync('./img/nolight.png')) {
fs.unlink('./img/nolight.png', (err) => {
if (err) throw err;
});
}
const { stdout, stderr } = await exec('apngasm -o img/nolight.png img/frame00*.png -s')
.then(() => message.channel.send({files: ['./img/nolight.png']}));
console.log(`stdout: ${stdout}`);