diff options
author | Helmut Grohne <helmut@subdivi.de> | 2023-01-15 21:32:49 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2023-01-15 21:32:49 +0100 |
commit | bebff47fac1e3c80790ad0c67b96a05eefd444ea (patch) | |
tree | 673656e06e59f2ba3627873231b9c1d38fe99664 /bin | |
parent | c485761592a569f59be3f6d1968eff91bf741b68 (diff) | |
download | debvm-bebff47fac1e3c80790ad0c67b96a05eefd444ea.tar.gz |
debvm-create: actually drop -m from the getopts invocation
Fixes: 7a2b46697659 ("Drop mirror option")
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/debvm-create | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/debvm-create b/bin/debvm-create index 2555a8e..47ebde6 100755 --- a/bin/debvm-create +++ b/bin/debvm-create @@ -160,7 +160,7 @@ opt_size() { SIZE=$(($1*1024*1024*1024)) } -while getopts :a:h:k:m:o:r:s:z:-: OPTCHAR; do +while getopts :a:h:k:o:r:s:z:-: OPTCHAR; do case "$OPTCHAR" in a) opt_architecture "$OPTARG" ;; h) opt_hostname "$OPTARG" ;; |