Skip to content

Commit

Permalink
chore: Forgot to compile... Again!!
Browse files Browse the repository at this point in the history
  • Loading branch information
gcarreno committed Nov 13, 2024
1 parent 239dc91 commit 1850384
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dist/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1120,9 +1120,11 @@ class Packages {
if (key.startsWith("PackageData")) {
const pkgData = new PackageData();
Object.assign(pkgData, value);
pkgData.PackageBaseDir = pkgData.PackageBaseDir.replace(/\\/gi, "");
pkgData.packages = packageList[`PackageFiles${key.slice(11)}`].map((file) => {
const pkgFile = new PackageFile();
Object.assign(pkgFile, file);
pkgFile.RelativeFilePath = pkgFile.RelativeFilePath.replace(/\\/gi, "");
return pkgFile;
});
result.push(pkgData);
Expand Down

0 comments on commit 1850384

Please sign in to comment.