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