Skip to content

Commit

Permalink
fix Full Name showing up as "", closes #233
Browse files Browse the repository at this point in the history
  • Loading branch information
SolidHal committed Oct 31, 2020
1 parent 42496f5 commit 66515c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/InstallScripts/InstallPrawnOS.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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:-----"
Expand Down

0 comments on commit 66515c6

Please sign in to comment.