Skip to content

Commit c965ad7

Browse files
Rel1cxCopilot
andauthored
Update scripts/effects/ignores.ts
Co-authored-by: Copilot <[email protected]> Signed-off-by: REL1CX <[email protected]>
1 parent 4b2fd4c commit c965ad7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/effects/ignores.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import * as Str from "effect/String";
77

88
export const ignores = Fn.pipe(
99
FileSystem.FileSystem,
10-
Effect.flatMap((fs) => fs.readFileString(".gitignore")),
10+
Effect.flatMap((fs) => fs.readFileString(".gitignore", "utf8")),
1111
Effect.map(Str.split("\n")),
1212
Effect.map(Arr.map(Str.trim)),
1313
Effect.map(Arr.filter(not(or(Str.startsWith("#"), Str.startsWith("!"))))),

0 commit comments

Comments
 (0)