Compare commits

...

2 commits

Author SHA1 Message Date
424d5ab02a Don't hardcode the folders 2022-09-28 16:05:07 +02:00
2714c748bf Copy instead of moving the file 2022-09-28 16:00:59 +02:00
3 changed files with 11 additions and 13 deletions

View file

@ -36,7 +36,8 @@ export default {
await interaction.editReply({ content: '❌ Uh oh! The video is too big!', ephemeral: true });
}
else {
fs.renameSync(output, `./asset/ytp/userVid/${file}`);
// CopyFile instead of rename in case you have /tmp and the asset folder on different a disk.
fs.copyFileSync(output, `./asset/ytp/userVid/${file}`);
const mp4 = [];
fs.readdirSync('./asset/ytp/userVid/').forEach(f => {
if (f.endsWith('mp4')) {

View file

@ -17,12 +17,11 @@ const client = new Client({
// Load commands
client.commands = new Collection();
await loadCommandFromDir('fun');
await loadCommandFromDir('secret');
await loadCommandFromDir('utility');
await loadCommandFromDir('voice');
await loadCommandFromDir('admin');
await loadCommandFromDir('owner');
const categoryPath = fs.readdirSync(`${__dirname}/commands`);
categoryPath.forEach(category => {
loadCommandFromDir(category);
});
// Load events
await loadEventFromDir('client', client);

View file

@ -11,12 +11,10 @@ const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const commands = [];
await loadCommandFromDir('fun');
await loadCommandFromDir('secret');
await loadCommandFromDir('utility');
await loadCommandFromDir('voice');
await loadCommandFromDir('admin');
await loadCommandFromDir('owner');
const categoryPath = fs.readdirSync(`${__dirname}/../commands`);
categoryPath.forEach(category => {
loadCommandFromDir(category);
});
commands.map(command => command.toJSON());
const rest = new REST({ version: '9' }).setToken(token);