Displaying 3 results from an estimated 3 matches for "967754d95".
2017 Mar 23
0
[PATCH v5 07/10] dib: move do_cp to mllib.Commun_utils
---
dib/utils.ml | 4 ----
mllib/common_utils.ml | 5 +++++
mllib/common_utils.mli | 3 +++
3 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/dib/utils.ml b/dib/utils.ml
index 967754d95..92296d173 100644
--- a/dib/utils.ml
+++ b/dib/utils.ml
@@ -98,10 +98,6 @@ let get_required_tool tool =
let require_tool tool =
ignore (get_required_tool tool)
-let do_cp src destdir =
- let cmd = [ "cp"; "-t"; destdir; "-a"; src ] in
- if run_command cmd <&...
2017 Mar 23
13
[PATCH v5 00/10] Introducing virt-builder-repository
Hi all,
Here is the v5 of my patches series applying the latest comments
from Pino.
Cédric Bosdonnat (10):
lib/osinfo.c: Extract xml processing into a callback
lib: extract osinfo DB traversing API
mllib: ocaml wrapper for lib/osinfo
builder: rename docs test script
builder: add a template parameter to get_index
builder: add Index.write_entry function
dib: move do_cp to
2017 Apr 04
1
[PATCH] Use Unicode single quotes ‘’ in place of short single quoted strings throughout.
...r (f_"VHD output not produced, most probably vhd-util is old or not patched for 'convert'")
+ error (f_"VHD output not produced, most probably vhd-util is old or not patched for ‘convert’")
let fmt = {
defaults with
diff --git a/dib/utils.ml b/dib/utils.ml
index 967754d95..afa2ec944 100644
--- a/dib/utils.ml
+++ b/dib/utils.ml
@@ -47,11 +47,11 @@ let var_from_lines var lines =
let var_lines = List.filter (fun x -> String.is_prefix x var_with_equal) lines in
match var_lines with
| [] ->
- error (f_"variable '%s' not found in lines:\n%s&...