Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-k-cameron committed Jul 6, 2023
1 parent 73b40a4 commit 2694ec0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ private object Commands {
if (featuresToEnable != null) {
val s = featuresToEnable.joinToString { " " }
return "cargo test --features $s"
}else {
} else {
return "cargo test"
}
}
Expand All @@ -115,7 +115,7 @@ private object Commands {
if (featuresToEnable != null) {
val s = featuresToEnable.joinToString { " " }
return "cargo check --features $s"
}else {
} else {
return "cargo check"
}
}
Expand Down

0 comments on commit 2694ec0

Please sign in to comment.