diff options
author | jkh <jkh@FreeBSD.org> | 1995-01-28 09:07:48 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-01-28 09:07:48 +0000 |
commit | c4f97fa185095db2dfac9405658100bf51b57850 (patch) | |
tree | 65be7a35bf478fd0bb0271037094471bcd252551 | |
parent | 9324ad8d8fc03030ec0e30a0154ec1156ea5ed57 (diff) | |
download | FreeBSD-src-c4f97fa185095db2dfac9405658100bf51b57850.zip FreeBSD-src-c4f97fa185095db2dfac9405658100bf51b57850.tar.gz |
Print message about ignoring stupid warnings in game dist
Don't ask user to press return after every dist.
-rw-r--r-- | release/scripts/extract_games.sh | 4 | ||||
-rw-r--r-- | release/scripts/instdist.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/extract_games.sh b/release/scripts/extract_games.sh index 1dc6cff..7495722 100644 --- a/release/scripts/extract_games.sh +++ b/release/scripts/extract_games.sh @@ -1,8 +1,8 @@ #!/bin/sh -# $Id: extract.sh,v 1.17 1994/12/04 03:41:18 jkh Exp $ +# $Id: extract_games.sh,v 1.1 1995/01/14 07:41:41 jkh Exp $ PATH=/stand:$PATH DDIR=/ DIST=games -echo "Extracting ${DIST}" +echo "Extracting ${DIST} - ignore any errors from cpio" cat ${DIST}.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu ) diff --git a/release/scripts/instdist.sh b/release/scripts/instdist.sh index d56c13a..482bf27 100644 --- a/release/scripts/instdist.sh +++ b/release/scripts/instdist.sh @@ -10,7 +10,7 @@ # putting your name on top after doing something trivial like reindenting # it, just to make it look like you wrote it!). # -# $Id: instdist.sh,v 1.3 1995/01/28 01:18:42 jkh Exp $ +# $Id: instdist.sh,v 1.4 1995/01/28 09:04:12 jkh Exp $ if [ "${_INSTINST_SH_LOADED_}" = "yes" ]; then return 0 @@ -202,7 +202,7 @@ media_extract_dist() else sh ./extract.sh < /dev/ttyv1 > /dev/ttyv1 2>&1 fi - dialog --title "Extraction Complete" --msgbox "Please press return to continue" -1 -1 + dialog --title "Extraction Complete" --infobox "${MEDIA_DISTRIBUTION} is done" -1 -1 else error "No installation script found!" fi |