diff options
author | Richard Jones <rjones@redhat.com> | 2010-05-08 09:37:25 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2010-05-08 09:37:25 +0100 |
commit | 01fedcde05c930c1413e9fe0909fa1da1f360cdf (patch) | |
tree | a01f9fe31938ce9f69c9b2883a9b03f8ac34fc08 | |
parent | 55e9707f8591488542da48fc89738234b4d85016 (diff) | |
download | libguestfs-01fedcde05c930c1413e9fe0909fa1da1f360cdf.tar.gz libguestfs-01fedcde05c930c1413e9fe0909fa1da1f360cdf.tar.xz libguestfs-01fedcde05c930c1413e9fe0909fa1da1f360cdf.zip |
fish: Add 'please wait' message when launching (and interactive).
-rw-r--r-- | fish/fish.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fish/fish.c b/fish/fish.c index 461f55b8..13f1e990 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -547,6 +547,8 @@ static int launch (void) { if (guestfs_is_config (g)) { + if (isatty (0)) + printf (_("guestfish: wait a moment while we launch libguestfs ...\n")); if (guestfs_launch (g) == -1) return -1; } |