Skip to content

Commit

Permalink
Windows bug fix
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <prabhu@appthreat.com>
  • Loading branch information
prabhu committed Oct 2, 2023
1 parent 6cf0a46 commit b668960
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -2609,11 +2609,11 @@ export async function parseReqFile(reqData, fetchDepsInfo) {
const pkgList = [];
let compScope = undefined;
reqData
.replace(/\r/g, "")
.replace(/ [\\]\n/g, "")
.replace(/ {4}/g, " ")
.split("\n")
.forEach((l) => {
l = l.replace("\r", "");
l = l.trim();
let markers = undefined;
if (l.includes(" ; ")) {
Expand Down

0 comments on commit b668960

Please sign in to comment.