Make the username lowercase
This commit is contained in:
parent
313b9b0219
commit
ad7e0a444e
|
|
@ -237,6 +237,10 @@ fi
|
||||||
echo -e "\nDone!\n"
|
echo -e "\nDone!\n"
|
||||||
if ! source install.conf; then
|
if ! source install.conf; then
|
||||||
read -p "Please enter username:" username
|
read -p "Please enter username:" username
|
||||||
|
|
||||||
|
# Make username lowercase
|
||||||
|
username=${username,,}
|
||||||
|
|
||||||
echo "username=$username" >> ${HOME}/ArchTitus/install.conf
|
echo "username=$username" >> ${HOME}/ArchTitus/install.conf
|
||||||
fi
|
fi
|
||||||
if [ $(whoami) = "root" ];
|
if [ $(whoami) = "root" ];
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue