diff options
author | Helmut Grohne <helmut@subdivi.de> | 2023-01-15 21:25:09 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2023-01-15 21:25:09 +0100 |
commit | c485761592a569f59be3f6d1968eff91bf741b68 (patch) | |
tree | 7f462d3ab3bb03979b9d47026d25f20e5c17e6da /bin | |
parent | 54d41b49ea8b732f7ccd580f5c447a43200055ad (diff) | |
download | debvm-c485761592a569f59be3f6d1968eff91bf741b68.tar.gz |
debvm-create: carefully handle a -o filename starting with a dash
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/debvm-create | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/debvm-create b/bin/debvm-create index d85f82c..2555a8e 100755 --- a/bin/debvm-create +++ b/bin/debvm-create @@ -151,6 +151,7 @@ opt_sshkey() { } opt_output() { IMAGE=$1 + test "${IMAGE#-}" = "$IMAGE" || IMAGE="./$IMAGE" } opt_release() { SUITE=$1 |