Skip to content

Commit

Permalink
v0.8.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkal committed Apr 28, 2020
1 parent 9114561 commit b576928
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "inkjet"
version = "0.8.0"
version = "0.8.1"
description = "Make your markdown executable with inkjet, the interactive CLI task runner"
authors = ["Brandon Kalinowski <[email protected]>"]
repository = "https://github.com/brandonkal/inkjet"
Expand Down
3 changes: 2 additions & 1 deletion inkjet.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ fi
cargo build --release
cd $INKJET_DIR/target/release
strip inkjet
tar -czf inkjet-linux.tar.gz inkjet
platform=`echo $(uname -s) | tr '[:upper:]' '[:lower:]'`
tar -czf inkjet-${platform}.tar.gz inkjet
```

## ping
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ fn interactive_params(mut chosen_cmd: Command, inkfile_path: &str, color: bool)
.default(false)
.interact()
.unwrap();
if rv == true {
if rv {
flag.val = "true".to_string();
}
}
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ mod when_no_inkfile_found_in_current_directory {
.current_dir(".github")
.command("-V")
.assert()
.stdout(contains("no inkjet.md found"));
.stderr(contains("no inkjet.md found"));
}

#[test]
Expand Down

0 comments on commit b576928

Please sign in to comment.