We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55d1e66 commit afc5b14Copy full SHA for afc5b14
1 file changed
crates/affected-cli/tests/cli.rs
@@ -63,8 +63,9 @@ members = ["crates/core", "crates/app"]
63
)
64
.unwrap();
65
66
- // Git init + commit
+ // Git init + commit (disable autocrlf to avoid Windows line-ending issues)
67
git(dir, &["init"]);
68
+ git(dir, &["config", "core.autocrlf", "false"]);
69
git(dir, &["add", "-A"]);
70
git_commit(dir, "init");
71
}
0 commit comments