search for: 63fb30f

Displaying 2 results from an estimated 2 matches for "63fb30f".

Did you mean: 63bfb31f
2012 May 02
0
[PATCH] fish: Add --pipe-error flag to allow detection of errors in pipe commands (RHBZ#803533).
...s guestfish commands to fail on pipe commands line the one above. The default is off for backwards compatibility reasons. --- fish/fish.c | 15 +++++++++++++++ fish/guestfish.pod | 12 ++++++++++++ 2 files changed, 27 insertions(+) diff --git a/fish/fish.c b/fish/fish.c index d0688f1..63fb30f 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -74,6 +74,7 @@ static void add_history_line (const char *); static int override_progress_bars = -1; static struct progress_bar *bar = NULL; +static int pipe_error = 0; /* Currently open libguestfs handle. */ guestfs_h *g = NULL; @@ -126,6 +127,7...
2012 May 02
4
[PATCH 0/4] fish: Allow the glob command to expand device patterns (RHBZ#635971).
This patch set fixes a two year old bug in guestfish, namely that the 'glob' command does not expand /dev/* patterns. https://bugzilla.redhat.com/show_bug.cgi?id=635971 Rich.