Skip to content

Commit

Permalink
Fixed build script 🔧
Browse files Browse the repository at this point in the history
  • Loading branch information
01taylop committed Jun 21, 2024
1 parent 7422dd6 commit 05e8459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const compileLintConfiguration = async (): Promise<void> => {
const files = await fs.promises.readdir(configFolder)

for (const file of files) {
const filePath = path.join(configFolder, file)
const filePath = path.join(process.cwd(), configFolder, file)

if ((await fs.promises.stat(filePath)).isFile()) {
const filename = path.parse(file).name
Expand Down

0 comments on commit 05e8459

Please sign in to comment.