Fix filename spelling error

This commit is contained in:
Dragon Fire
2020-03-23 12:05:29 -04:00
parent eb31871aa1
commit a892ff48ab
+1 -1
View File
@@ -24,6 +24,6 @@ module.exports = class GenerateProcessEnvCommand extends Command {
line = line.replace('=', '');
return `${line}="${process.env[line] || ''}"`;
}).join('\n');
return msg.channel.send({ files: [{ attachment: Buffer.from(list), name: 'provess.env.txt' }] });
return msg.channel.send({ files: [{ attachment: Buffer.from(list), name: 'process.env.txt' }] });
}
};