fix Full Name showing up as "", closes #233

This commit is contained in:
SolidHal 2020-10-31 16:12:08 -07:00
parent 42496f56f6
commit 66515c6399
1 changed files with 1 additions and 1 deletions

View File

@ -381,7 +381,7 @@ setup_users() {
#ensure no whitespace
case "$username" in *\ *) echo usernames may not contain whitespace;; *) break;; esac
done
until chroot_wrapper "$TARGET_MOUNT" adduser "$username" --gecos \"\"
until chroot_wrapper "$TARGET_MOUNT" adduser "$username" --gecos "$username"
do
while true; do
echo "-----Enter new username:-----"