Skip to content

Commit baf176d

Browse files
committed
updates
1 parent c1ca26f commit baf176d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,8 @@
77
/.idea/
88
/old/
99
/**/.mypy_cache
10-
/**/*.pyc
10+
/**/*.pyc
11+
/**/words
12+
/**/main.dwarf
13+
/**/main
14+
/**/target

example-rust/src/main.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ fn main() -> std::io::Result<()> {
1515
fs::create_dir_all(outdir)?;
1616
let wg = WaitGroup::new();
1717
let path = "../data/??/**/*.yml";
18-
// let path = "./bibles/??/**/*.yml";
1918
for entry in glob(path).expect("Failed to read glob pattern") {
2019
match entry {
2120
Ok(path) => {

0 commit comments

Comments
 (0)