Skip to content

Commit

Permalink
sh/sync.sh: Fix a typo created in da2072a
Browse files Browse the repository at this point in the history
  • Loading branch information
Akianonymus committed Jul 24, 2020
1 parent 2ed6a33 commit d33fc39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sh/sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ _process_arguments() {
case "${Aseen}" in
*"|:_//_:|${INPUT}|:_//_:|"*) continue ;;
*) Aseen="${Aseen}|:_//_:|${INPUT}|:_//_:|" ;;
esac && { ! [ -d "${INPUT}" ] && printf "\nError: Invalid Input ( %s ), no such directory.\n" "${INPUT}" && continue; }; do
esac && [ -d "${INPUT}" ] || { printf "\nError: Invalid Input ( %s ), no such directory.\n" "${INPUT}" && continue; }; do
current_folder_process_arguments="$(pwd)"
FOLDER="$(cd "${INPUT}" && pwd)" || exit 1
GDRIVE_FOLDER="${GDRIVE_FOLDER:-${ROOT_FOLDER_NAME:-Unknown}}"
Expand Down

0 comments on commit d33fc39

Please sign in to comment.