aboutsummaryrefslogtreecommitdiff
path: root/xtask/src
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-02-14 16:11:19 +0000
committerAleksey Kladov <[email protected]>2020-02-14 16:11:19 +0000
commitf2e8dfc8203bfd7cc69f58149577e207f6636fd3 (patch)
treea6c3d41fc74476bf1be2609fcc07a17d97cfbc2b /xtask/src
parent269e2f22a942919d421b89287d5669b2c2607917 (diff)
Cleanup
Diffstat (limited to 'xtask/src')
-rw-r--r--xtask/src/not_bash.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/not_bash.rs b/xtask/src/not_bash.rs
index 4ec1efa73..56d6c6c2d 100644
--- a/xtask/src/not_bash.rs
+++ b/xtask/src/not_bash.rs
@@ -87,7 +87,7 @@ fn run_process_inner(cmd: &str, echo: bool) -> Result<String> {
87 } 87 }
88 88
89 if !output.status.success() { 89 if !output.status.success() {
90 bail!("returned non-zero status: {}", output.status) 90 bail!("{}", output.status)
91 } 91 }
92 92
93 Ok(stdout) 93 Ok(stdout)