Skip to content

Commit

Permalink
chore: bump 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zifeo committed Feb 4, 2023
1 parent 039e044 commit 772231f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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 = "whiz"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
description = "Modern DAG/tasks runner for multi-platform monorepos."
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/actors/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ impl CommandActor {
match &task_pipe.redirection {
OutputRedirection::Tab(name) => {
let mut tab_name = "".to_string();
for capture in task_pipe.regex.captures_iter(&line) {
if let Some(capture) = task_pipe.regex.captures(&line) {
capture.expand(&name.clone(), &mut tab_name);
}
if let Some(addr) = &self_addr {
Expand Down

0 comments on commit 772231f

Please sign in to comment.