mirror of
https://github.com/xHyroM/bun-discord-bot.git
synced 2024-11-10 01:08:07 +01:00
chore(scripts/validateTags): fix import
This commit is contained in:
parent
89ff682211
commit
b78a3d04b6
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
name: Validate Tag
|
||||
name: Validate Tags
|
||||
|
||||
on:
|
||||
pull_request_target:
|
|
@ -2,7 +2,7 @@ const files = await Bun.file('./files.json').text();
|
|||
if (!files.includes('files/tags.toml')) process.exit(0);
|
||||
|
||||
// @ts-expect-error types
|
||||
const tags = await import('./files/tags.toml');
|
||||
const tags = await import('../../../files/tags.toml');
|
||||
console.log(tags);
|
||||
|
||||
export { };
|
||||
|
|
Loading…
Reference in a new issue