Skip to content

Commit 67ffffd

Browse files
committed
Fix extension error
1 parent 3feb9ae commit 67ffffd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sabreur"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
authors = ["Anicet Ebou <anicet.ebou@gmail.com>"]
55
edition = "2018"
66
exclude = ["CODE_OF_CONDUCT.md", "tests/*", "benches/*", ".github/*", ".cargo/*"]

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ fn main() -> Result<()> {
372372
// Create unknown file
373373
let mut unk_path = PathBuf::from("");
374374
unk_path.push(output);
375-
unk_path.push(format!("{}{}", "unknown.fa", ext));
375+
unk_path.push(format!("{}{}", "unknown.fq", ext));
376376

377377
let future_unk_path = unk_path.clone();
378378

0 commit comments

Comments
 (0)