homeinit: Perform the large update by default

master
Pierre Neidhardt 2018-02-11 20:00:14 +01:00
parent 5d5ead1fc3
commit fefa3177f9
1 changed files with 5 additions and 5 deletions

View File

@ -9,17 +9,17 @@ Initialize home folder.
Options:
-u: Update packages, etc.
-u: Skip large updates (packages, etc.)
EOF
exit
fi
OPT_UPDATE=false
OPT_GO=""
OPT_UPDATE=true
OPT_GO="-u"
if [ "$1" = "-u" ]; then
OPT_UPDATE=true
OPT_GO="-u"
OPT_UPDATE=false
OPT_GO=""
shift
fi