Skip to content

Commit

Permalink
actually symlinks are alright
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendonovich committed Jan 27, 2025
1 parent 3943356 commit 7c6c91e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions scripts/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,10 @@ async function main() {
});

// alternative to specifying dylibs as linker args
for (const name of await fs.readdir(
`${frameworkDir}/Versions/A/Libraries`
)) {
await fs.mkdir(`${targetDir}/debug`, { recursive: true });
for (const name of await fs.readdir(`${nativeDepsDir}/lib`)) {
await fs.copyFile(
`${frameworkDir}/Versions/A/Libraries/${name}`,
`${nativeDepsDir}/lib/${name}`,
`${targetDir}/debug/${name}`
);
}
Expand Down

0 comments on commit 7c6c91e

Please sign in to comment.