aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/not_bash.rs
diff options
context:
space:
mode:
Diffstat (limited to 'xtask/src/not_bash.rs')
-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 027571b62..1a7cb7114 100644
--- a/xtask/src/not_bash.rs
+++ b/xtask/src/not_bash.rs
@@ -113,7 +113,7 @@ fn run_process_inner(cmd: &str, echo: bool) -> Result<String> {
113 bail!("{}", output.status) 113 bail!("{}", output.status)
114 } 114 }
115 115
116 Ok(stdout) 116 Ok(stdout.trim().to_string())
117} 117}
118 118
119// FIXME: some real shell lexing here 119// FIXME: some real shell lexing here