diff options
Diffstat (limited to 'source/a/pkgtools/scripts/installpkg')
-rw-r--r-- | source/a/pkgtools/scripts/installpkg | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source/a/pkgtools/scripts/installpkg b/source/a/pkgtools/scripts/installpkg index 2b87bf36..16e2e47e 100644 --- a/source/a/pkgtools/scripts/installpkg +++ b/source/a/pkgtools/scripts/installpkg @@ -188,8 +188,14 @@ else TERSELENGTH=80 fi +# Default install mode is standard text mode: +MODE=install +# If $TERSE is set to 0 in the environment, then use terse mode: +if [ "$TERSE" = "0" ]; then + MODE=terse +fi + # Parse options: -MODE=install # standard text-mode while [ 0 ]; do if [ "$1" = "-warn" -o "$1" = "--warn" ]; then MODE=warn |