Skip to content

Commit

Permalink
del redundant file
Browse files Browse the repository at this point in the history
  • Loading branch information
rinchan01 committed Nov 27, 2024
1 parent 2127742 commit 85192c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion internal/validateTokenFiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ const TOKEN_DIR = path.join(__dirname, `../src/${DEFAULT_TOKEN_DIR}`);
async function validateTokenFiles() {
fs.readdir(TOKEN_DIR, (error, files) => {
if (error) {
console.log(error);
console.error(error);
throw error;
}
for (const file of files) {
const filePath = path.join(TOKEN_DIR, `${file}`);
Expand Down
1 change: 0 additions & 1 deletion src/tokens/wrongToken.yaml

This file was deleted.

0 comments on commit 85192c8

Please sign in to comment.