Skip to content

Commit

Permalink
Update utils.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Avaray committed Nov 30, 2024
1 parent 2b13b6e commit 6ffd8ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export function getIds(data: string) {
}

export function normalizeFilename(filename: string) {
return filename.replace(/[^\w\.]+/g, "_");
return filename.replace(/[^\w\.]+/g, "_").toLowerCase();
}

// Get branch name
Expand Down

0 comments on commit 6ffd8ea

Please sign in to comment.