We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bb6fd7 commit 6d9e722Copy full SHA for 6d9e722
src/config.rs
@@ -93,8 +93,8 @@ impl Config {
93
format!("{path_relative_to_repo:?}").green()
94
);
95
self.crypt_list.push(
96
- (path_relative_to_repo.to_string_lossy() + if path.is_dir() { "/**" } else { "" })
97
- .into(),
+ path_relative_to_repo.to_string_lossy().replace('\\', "/")
+ + if path.is_dir() { "/**" } else { "" },
98
99
100
// check extension
0 commit comments