Small fixes to the main and install file.

This commit is contained in:
Peter Green 2023-01-17 17:58:22 +00:00
parent 6384189da0
commit b14d980ba6
2 changed files with 1 additions and 2 deletions

View File

@ -9,7 +9,6 @@
##################################
# Vars...
source=
destination=

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 mkdir "$HOME"/bin
else echo "$HOME/bin not found, now creating..." && mkdir "$HOME/bin && echo "$HOME/bin created."
fi
# Make the root dir...