Clean up.

This commit is contained in:
Peter Green 2023-01-18 19:18:48 +00:00
parent a312b39f71
commit e1b9835e92
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ read -r dest
# Check for the 'bin' dir in the users 'Home' directory and create it if not present...
if [ -d "$HOME"/bin ];
then echo "$HOME/bin exists, nothing to do..."
else echo "$HOME/bin not found, now creating..." && mkdir "$HOME"/bin && echo "$HOME/bin created."
else mkdir "$HOME"/bin
fi
# Make the root dir...