Fixed install.sh file.

This commit is contained in:
Peter Green 2023-01-18 16:41:05 +00:00
parent 72f331f643
commit a312b39f71
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 echo "$HOME/bin not found, now creating..." && mkdir "$HOME"/bin && echo "$HOME/bin created."
fi
# Make the root dir...