Skip to content

Commit

Permalink
checking file outputs macos13 runner
Browse files Browse the repository at this point in the history
  • Loading branch information
jowparks committed Mar 26, 2024
1 parent 3554d70 commit d2e0e0c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packages/ironfish-native-module/scripts/cargo-ios.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,14 @@ function main() {
if (!fs.existsSync(destinationPath)) {
fs.mkdirSync(destinationPath, { recursive: true });
}

try {
const output = spawnSync("find /Users/runner/work/mobile-wallet -type f", {
encoding: "utf8",
});
console.log(output);
} catch (error) {
console.error("Error occurred:", error);
}
fs.copyFileSync(rustLibPath, path.join(destinationPath, libFileName));
fs.copyFileSync(rustHeaderPath, path.join(destinationPath, headerFileName));
}
Expand Down

0 comments on commit d2e0e0c

Please sign in to comment.