summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMario Krehl <mkrehl@science-computing.de>2016-09-07 11:14:08 +0200
committerMario Krehl <mkrehl@science-computing.de>2016-09-07 11:14:08 +0200
commit12f9175700ce9da71de1c37fa3607b9440bc5828 (patch)
tree549377d3557c40ffcb9f68cfcdc98a8ed325b28b /bin
parentd69b8498e9e82072da70430143b2141f1f85e015 (diff)
Fix --versions
Diffstat (limited to 'bin')
-rw-r--r--bin/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/src/main.rs b/bin/src/main.rs
index 4f6f84d7..f8259d52 100644
--- a/bin/src/main.rs
+++ b/bin/src/main.rs
@@ -156,7 +156,7 @@ fn main() {
for command in get_commands().iter() {
result.push(crossbeam::scope(|scope| {
scope.spawn(|| {
- let v = Command::new(command).arg("--version").output();
+ let v = Command::new(format!("imag-{}",command)).arg("--version").output();
match v {
Ok(v) => match String::from_utf8(v.stdout) {
Ok(s) => format!("{} -> {}", command, s),