Skip to content

Commit

Permalink
fix glob for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
holic committed Aug 28, 2024
1 parent 40db84d commit 9a1bc04
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/world/ts/node/findContractArtifacts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export async function findContractArtifacts({ forgeOutDir }: Input): Promise<Out
await glob("**/*.sol/*.json", {
ignore: ["**/*.abi.json", "**/*.t.sol/*.json", "**/*.s.sol/*.json"],
cwd: forgeOutDir,
windowsPathsNoEscape: true,
})
).sort();
const artifactsJson = await Promise.all(
Expand Down

0 comments on commit 9a1bc04

Please sign in to comment.