From 3004a76ff23cfa6a651b78cc2a21f27af6e30812 Mon Sep 17 00:00:00 2001 From: Dave Kennedy Date: Fri, 19 Feb 2016 13:15:25 -0700 Subject: [PATCH] Make options consistent --- mkstage4.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mkstage4.sh b/mkstage4.sh index df92b7f..6462b45 100755 --- a/mkstage4.sh +++ b/mkstage4.sh @@ -10,14 +10,14 @@ fi #set flag variables to null EXCLUDE_BOOT=0 EXCLUDE_CONNMAN=0 -EXCLUDE_LOST=1 +EXCLUDE_LOST=0 QUIET=0 USAGE="usage:\n\ `basename $0` [-q -c -b] [-s || -t ] [custom-tar-options]\n\ -q: activates quiet mode (no confirmation).\n\ -c: excludes connman network lists.\n\ -b: excludes boot directory.\n\ - -l: includes lost+found directory.\n\ + -l: excludes lost+found directory.\n\ -s: makes tarball of current system.\n\ -t: makes tarball of system located at the .\n\ -h: displays help message." @@ -41,7 +41,7 @@ while getopts ':t:sqcblh' flag; do EXCLUDE_BOOT=1 ;; l) - EXCLUDE_LOST=0 + EXCLUDE_LOST=1 ;; h) echo -e "$USAGE"