Richard W.M. Jones
2015-May-15 14:26 UTC
[Libguestfs] [PATCH] builder: Remove a few unnecessary 'virt-builder' strings from error messages.
---
builder/cmdline.ml | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/builder/cmdline.ml b/builder/cmdline.ml
index 7aa0c45..67a279d 100644
--- a/builder/cmdline.ml
+++ b/builder/cmdline.ml
@@ -234,11 +234,11 @@ read the man page virt-builder(1).
)
| `List ->
if format <> None then
- error (f_"virt-builder --list: use '--list-format', not
'--format'");
+ error (f_"--list: use '--list-format', not
'--format'");
(match args with
| [] -> ""
| _ ->
- error (f_"virt-builder --list does not need any extra
arguments")
+ error (f_"--list option does not need any extra arguments")
)
| `Notes ->
(match args with
@@ -246,7 +246,7 @@ read the man page virt-builder(1).
| [] ->
error (f_"virt-builder --notes os-version\nMissing
'os-version'. Use '--list' to list available template
names.")
| _ ->
- error (f_"virt-builder: too many parameters, expecting
'os-version'");
+ error (f_"--notes: too many parameters, expecting
'os-version'");
)
| `Cache_all
| `Print_cache
@@ -254,7 +254,7 @@ read the man page virt-builder(1).
(match args with
| [] -> ""
| _ ->
- error (f_"virt-builder
--cache-all-templates/--print-cache/--delete-cache does not need any extra
arguments")
+ error (f_"--cache-all-templates/--print-cache/--delete-cache does
not need any extra arguments")
)
| `Get_kernel ->
(match args with
@@ -262,7 +262,7 @@ read the man page virt-builder(1).
| [] ->
error (f_"virt-builder --get-kernel image\nMissing 'image'
(disk image file) argument")
| _ ->
- error (f_"virt-builder --get-kernel: too many parameters")
+ error (f_"--get-kernel: too many parameters")
) in
(* Check source(s) and fingerprint(s). *)
--
2.3.1
Pino Toscano
2015-May-15 15:07 UTC
Re: [Libguestfs] [PATCH] builder: Remove a few unnecessary 'virt-builder' strings from error messages.
On Friday 15 May 2015 15:26:40 Richard W.M. Jones wrote:> --- > builder/cmdline.ml | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/builder/cmdline.ml b/builder/cmdline.ml > index 7aa0c45..67a279d 100644 > --- a/builder/cmdline.ml > +++ b/builder/cmdline.ml > @@ -234,11 +234,11 @@ read the man page virt-builder(1). > ) > | `List -> > if format <> None then > - error (f_"virt-builder --list: use '--list-format', not '--format'"); > + error (f_"--list: use '--list-format', not '--format'"); > (match args with > | [] -> "" > | _ -> > - error (f_"virt-builder --list does not need any extra arguments") > + error (f_"--list option does not need any extra arguments") > ) > | `Notes -> > (match args with > @@ -246,7 +246,7 @@ read the man page virt-builder(1). > | [] -> > error (f_"virt-builder --notes os-version\nMissing 'os-version'. Use '--list' to list available template names.") > | _ -> > - error (f_"virt-builder: too many parameters, expecting 'os-version'"); > + error (f_"--notes: too many parameters, expecting 'os-version'"); > ) > | `Cache_all > | `Print_cache > @@ -254,7 +254,7 @@ read the man page virt-builder(1). > (match args with > | [] -> "" > | _ -> > - error (f_"virt-builder --cache-all-templates/--print-cache/--delete-cache does not need any extra arguments") > + error (f_"--cache-all-templates/--print-cache/--delete-cache does not need any extra arguments") > ) > | `Get_kernel -> > (match args with > @@ -262,7 +262,7 @@ read the man page virt-builder(1). > | [] -> > error (f_"virt-builder --get-kernel image\nMissing 'image' (disk image file) argument") > | _ -> > - error (f_"virt-builder --get-kernel: too many parameters") > + error (f_"--get-kernel: too many parameters") > ) in > > (* Check source(s) and fingerprint(s). *)LGTM. -- Pino Toscano
Seemingly Similar Threads
- [PATCH] builder: Make the interface between cmdline.ml and builder.ml explicit.
- Help with Writing Meaningful Specs
- zip.unpack() crashes R (PR#2818)
- [PATCH] builder: complete architecture handling
- [PATCH 1/3] get-kernel: split command line handling in own function