Fixed quotes.

This commit is contained in:
Otho 2023-01-16 19:52:53 -05:00
parent d7642270c6
commit 6e108f6677
Signed by: Otho
GPG Key ID: 16C720CD3BBE21D9

View File

@ -188,8 +188,8 @@ send_latest()
esac esac
fi fi
for dataset in $SEND_DATASETS; do for dataset in $SEND_DATASETS; do
dataset=`echo $dataset|cut -d':' -f1` dataset="`echo $dataset|cut -d':' -f1`"
remote_dataset=`echo $dataset|cut -d':' -f2` remote_dataset="`echo $dataset|cut -d':' -f2`"
debug "dataset: $dataset" debug "dataset: $dataset"
debug "remote dataset: $remote_dataset" debug "remote dataset: $remote_dataset"
origin_snapshot=`get_latest_snapshot $dataset` origin_snapshot=`get_latest_snapshot $dataset`
@ -220,8 +220,8 @@ send_increment()
esac esac
fi fi
for dataset in $SEND_DATASETS; do for dataset in $SEND_DATASETS; do
dataset=`echo $dataset|cut -d':' -f1` dataset="`echo $dataset|cut -d':' -f1`"
remote_dataset=`echo $dataset|cut -d':' -f2` remote_dataset="`echo $dataset|cut -d':' -f2`"
origin_snapshot=`get_latest_snapshot` origin_snapshot=`get_latest_snapshot`
remote_snapshot=`get_latest_remote_snapshot` remote_snapshot=`get_latest_remote_snapshot`
if [ $BG_TEST_MODE = "TRUE" ]; then if [ $BG_TEST_MODE = "TRUE" ]; then