Skip to content

Commit cbe702c

Browse files
chore: generate
1 parent a7a85c9 commit cbe702c

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

packages/opencode/src/file/ripgrep.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,11 @@ export const layer: Layer.Layer<Service, never, AppFileSystem.Service | ChildPro
275275
}
276276
}
277277

278-
const extracted = path.join(dir, `ripgrep-${VERSION}-${config.platform}`, process.platform === "win32" ? "rg.exe" : "rg")
278+
const extracted = path.join(
279+
dir,
280+
`ripgrep-${VERSION}-${config.platform}`,
281+
process.platform === "win32" ? "rg.exe" : "rg",
282+
)
279283
if (!(yield* fs.isFile(extracted))) {
280284
return yield* Effect.fail(new Error(`ripgrep archive did not contain executable: ${extracted}`))
281285
}

0 commit comments

Comments
 (0)