Skip to content

Commit

Permalink
Added new path for locating binaries after building
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisGerritsenCloudflight committed Feb 4, 2025
1 parent 4ddcac4 commit a97fb1c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ const kPlatform = `${platform}${compiler}-${arch}`;
const binaryPaths = [
`./src/build/Release/converter.node`,
`@myunisoft/heif-converter.${kPlatform}/converter.node`,
`../../../apps/desktop/main/assets/heif-converter/heif-converter.win32-x64/lib/converter.win32-x64.node`
`../../../apps/desktop/main/assets/heif-converter/heif-converter.win32-x64/lib/converter.win32-x64.node`,
`../../../binaries/heif-converter.win32-x64/lib/converter.win32-x64.node`
];
let lib = null;
const errors = [];
Expand Down

0 comments on commit a97fb1c

Please sign in to comment.