Merge pull request #116 from theflu/patch-1
Make the username lowercase
This commit is contained in:
commit
9ab279a9c1
|
|
@ -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