Skip to content

Commit 42cdb5b

Browse files
DAG-2476 Make resmoke errors easier to see in version_gen (#60)
1 parent a8481b6 commit 42cdb5b

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 0.7.4 - 2022-04-14
4+
* Make resmoke errors easier to see in version_gen.
5+
36
## 0.7.3 - 2022-03-30
47
* Pass evergreen file location when calling burn_in_tests.py.
58

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "mongo-task-generator"
33
description = "Dynamically split evergreen tasks into subtasks for testing the mongodb/mongo project."
44
license = "Apache-2.0"
5-
version = "0.7.3"
5+
version = "0.7.4"
66
repository = "https://github.com/mongodb/mongo-task-generator"
77
authors = ["Decision Automation Group <[email protected]>"]
88
edition = "2018"

src/resmoke/external_cmd.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pub fn run_command(command: &[&str]) -> Result<String> {
3434
stdout = regular_info,
3535
"Command encountered an error",
3636
);
37-
bail!("Command encountered an error")
37+
bail!(error_message)
3838
}
3939

4040
let output = String::from_utf8_lossy(&cmd.stdout);

0 commit comments

Comments
 (0)