# to get the transfer list we use guc with "-do" option
globus-url-copy -do "$_transferListFile" "$_recursive" "$_source" "$_destination"
The double quotes around $_recursive need to be removed, as otherwise if $_recursive is empty (empty parameter), guc evaluates this parameter as URL as it does not contain a dash at the beginning.
listTransfer/createTransferList() contains an issue that might lead to a failing call to globus-url-copy (guc):
The double quotes around
$_recursive
need to be removed, as otherwise if$_recursive
is empty (empty parameter), guc evaluates this parameter as URL as it does not contain a dash at the beginning.