Quick typo fix

This commit is contained in:
deajan 2019-05-19 17:01:50 +02:00
parent 932ecd93fd
commit 99a7c932f7
1 changed files with 2 additions and 2 deletions

View File

@ -2418,9 +2418,9 @@ function _SummaryFromDeleteFile {
if [ -f "$summaryFile" ]; then if [ -f "$summaryFile" ]; then
while read -r file; do while read -r file; do
Logger "$direction $replicaPath$file" "ALWAYS" Logger "$direction $replicaPath$file" "ALWAYS"
if [ "$direction" == ">>" ]; then if [ "$direction" == "- >>" ]; then
TARGET_DELETES_COUNT=$((TARGET_DELETES_COUNT+1)) TARGET_DELETES_COUNT=$((TARGET_DELETES_COUNT+1))
elif [ "$direction" == "<<" ]; then elif [ "$direction" == "- <<" ]; then
INITIATOR_DELETES_COUNT=$((INITIATOR_DELETES_COUNT+1)) INITIATOR_DELETES_COUNT=$((INITIATOR_DELETES_COUNT+1))
fi fi
done < "$summaryFile" done < "$summaryFile"