Skip to content

Commit

Permalink
fix: typings path separator on windows (#5812)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcassidyav authored Aug 20, 2024
1 parent 16064af commit 25c3d67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/commands/typings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class TypingsCommand implements ICommand {
}

const items = res.map((item) => {
const [group, artifact, version, sha1, file] = item.split("/");
const [group, artifact, version, sha1, file] = item.split(path.sep);
return {
id: sha1 + version,
group,
Expand Down

0 comments on commit 25c3d67

Please sign in to comment.