summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorgeemili <minergeemili@gmail.com>2016-07-19 14:29:23 -0500
committergeemili <minergeemili@gmail.com>2016-07-19 14:29:23 -0500
commitd838a5c6b0ef895dc45ea846bd03cbff68bde46e (patch)
tree03ccb05f5b6b9f98e59d1863642a750aa7846d71 /bin
parent7702cac8fca20503f02e9e55a08b64e19c3d39ee (diff)
Actually fixed double debug flag this time
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 5fb212d4..4913cd7a 100644
--- a/bin/src/main.rs
+++ b/bin/src/main.rs
@@ -159,7 +159,7 @@ fn main() {
s => {
let mut subcommand_args = find_args(s);
- if is_debug && subcommand_args.iter().find(|x| *x == "debug").is_none() {
+ if is_debug && subcommand_args.iter().find(|x| *x == "--debug").is_none() {
subcommand_args.push(String::from("--debug"));
}
match Command::new(format!("imag-{}", s))