bugfix...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2023-03-08 20:08:57 +03:00
parent 66318f10eb
commit d601eaa272
11 changed files with 4 additions and 5 deletions

View File

Before

Width:  |  Height:  |  Size: 384 KiB

After

Width:  |  Height:  |  Size: 384 KiB

View File

Before

Width:  |  Height:  |  Size: 384 KiB

After

Width:  |  Height:  |  Size: 384 KiB

View File

Before

Width:  |  Height:  |  Size: 384 KiB

After

Width:  |  Height:  |  Size: 384 KiB

View File

Before

Width:  |  Height:  |  Size: 384 KiB

After

Width:  |  Height:  |  Size: 384 KiB

View File

@ -708,10 +708,9 @@ for spread in ${SPREADS[@]} ; do
l=$(( l - 1 )) l=$(( l - 1 ))
continue continue
# skip temporarily disabled... # skip temporarily disabled...
elif [[ "${spread}" =~ -.* ]] ; then elif [[ "${spread}" =~ [\\\/]-.*$ ]] ; then
SKIP_FIRST=1 SKIP_FIRST=1
echo "% spread: ${spread/-/}: skipped..." | tee >(cat >&2) echo "% spread: ${spread}: skipped..." | tee >(cat >&2)
echo %
continue continue
fi fi
@ -735,8 +734,8 @@ for spread in ${SPREADS[@]} ; do
fi fi
SKIP_FIRST=1 SKIP_FIRST=1
printf "Spread ($c/$l): ${spread/-/} \r" >&2 printf "Spread ($c/$l): ${spread} \r" >&2
echo "% spread: ${spread/-/}" echo "% spread: ${spread}"
handleSpread "$spread" handleSpread "$spread"
d=$(( d + 1 )) d=$(( d + 1 ))