summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/command.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-05-20 13:24:35 +0000
committerjkh <jkh@FreeBSD.org>1995-05-20 13:24:35 +0000
commitd27bb5a137d8b403eef67dccb6134514c03cd7eb (patch)
tree0c067b1e3b7015ba4061838cd2ab4551209719ea /usr.sbin/sysinstall/command.c
parent055f32000d36d17d799c0e3e14b7bc82e17f4426 (diff)
downloadFreeBSD-src-d27bb5a137d8b403eef67dccb6134514c03cd7eb.zip
FreeBSD-src-d27bb5a137d8b403eef67dccb6134514c03cd7eb.tar.gz
Clear the screen on msgNotifys.
Don't notify in vsystem() - it obscures the original message. Put some debugging code into cpio_extract() so that I can see why it doesn't work now. :(
Diffstat (limited to 'usr.sbin/sysinstall/command.c')
-rw-r--r--usr.sbin/sysinstall/command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/command.c b/usr.sbin/sysinstall/command.c
index 4b84376..1728964 100644
--- a/usr.sbin/sysinstall/command.c
+++ b/usr.sbin/sysinstall/command.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: command.c,v 1.7 1995/05/18 23:36:21 gpalmer Exp $
+ * $Id: command.c,v 1.8 1995/05/19 21:30:32 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -165,7 +165,7 @@ command_execute(void)
for (j = 0; j < commandStack[i]->ncmds; j++) {
/* If it's a shell command, run system on it */
if (commandStack[i]->cmds[j].type == CMD_SHELL) {
- msgNotify("Executing command: %s", commandStack[i]->cmds[j].ptr);
+ msgNotify("Doing %s", commandStack[i]->cmds[j].ptr);
ret = vsystem((char *)commandStack[i]->cmds[j].ptr);
msgDebug("Command `%s' returns status %d\n", commandStack[i]->cmds[j].ptr, ret);
}
OpenPOWER on IntegriCloud