diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-05-06 12:54:32 +0200 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-05-06 12:54:32 +0200 |
commit | 826861932147d0bbcb7cc5106942823493c86817 (patch) | |
tree | 3a28bacd029ee301c88ea72a5584c15a4d7fae31 | |
parent | d2dc17cc3d1836c52849974821626b30d294edaa (diff) |
change short instance file flag to -m
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 67ddf90..0cdadc8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -42,7 +42,7 @@ struct Args { #[arg(short = 'n', long = "size")] size: Option<u64>, /// Output location of the instance file. - #[arg(short = 'u', long = "instance")] + #[arg(short = 'm', long = "instance")] instance: String, /// Architecture of the device running the image. Supported: x86_64 rpi. #[arg(short = 'a', long = "architecture")] |