Compare commits

..

No commits in common. "2fc0372d9d050646a059094846bcbcd11e652814" and "76bad8af0b0d0823099b91c1d43544571c7a2097" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -88,7 +88,6 @@ getDestDir() {
while [[ $part =~ / ]]
do
thispart="${part%%/*}"
thispart=${thispart//$'\n'/::AtOM:NewLine:SQL:Inline::}
if (( ${destinationascii["$destination"]} ))
then
echo "$thispart" >&${toascii[1]}
@ -101,7 +100,8 @@ getDestDir() {
fi
if ! [ -d "${destinationpath[$destination]}/$destdir" ]
then
mkdir -p "${destinationpath[$destination]}/${destdir//::AtOM:NewLine:SQL:Inline::/$'\n'}"
mkdir -p "${destinationpath[$destination]}/$destdir"
fi
destdir="${destdir//+(\/)//}"
destdir=${destdir//$'\n'/::AtOM:NewLine:SQL:Inline::}
}

View File

@ -55,11 +55,11 @@ getDestFile() {
destfile="${filename##*/}"
destfile="${destfile%.*}"
fi
destfile=$(sanitizeFile "$destfile")
destfile=${destfile//$'\n'/::AtOM:NewLine:SQL:Inline::}
if (( ${destinationascii["$destination"]} ))
then
echo "$destfile" >&${toascii[1]}
read -r -u${toascii[0]} destfile
fi
destfile=$(sanitizeFile "$destfile")
}