From 0592685c0c52287d97ce4b44c0220e7f73f75567 Mon Sep 17 00:00:00 2001 From: Soren Hansen Date: Tue, 11 Mar 2008 09:23:50 +0100 Subject: [PATCH] Grammer and indentation fixes. --- mk-sbuild-lv | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mk-sbuild-lv b/mk-sbuild-lv index e3104c1..d0f6a1e 100755 --- a/mk-sbuild-lv +++ b/mk-sbuild-lv @@ -87,7 +87,7 @@ function usage() echo "Options:" echo " --arch=ARCH What architecture to select" echo " --name=NAME Base name for the schroot (arch is appended)" - echo " --personality=PERSONALITY What personality to use (defaults match --arch)" + echo " --personality=PERSONALITY What personality to use (defaults to match --arch)" echo " --debug Turn on script debugging" echo " --source-template=FILE Use FILE as the sources.list template" echo " --debootstrap-mirror=URL Use URL as the debootstrap source" @@ -112,10 +112,10 @@ while :; do # By default, use the native architecture. arch_opt="--arch $2" arch_suffix="-$2" - if [ -z "$personality" -a "$2" = "i386" ] - then - personality="linux32" - fi + if [ -z "$personality" -a "$2" = "i386" ] + then + personality="linux32" + fi shift 2 ;; --personality)