Find starting frame name?

This commit is contained in:
Matt McWilliams 2021-11-29 11:32:31 -05:00
parent a9456c569e
commit 8e53f5aac5
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ if [[ "${2}" == "" ]] || [[ $2 -eq 0 ]]; then
else
c=0
for svg in "${1}"*.svg ; do
if [ "${c}" != "${2}" ]; then
if [[ ${c} -ne ${2} ]]; then
let "c=c+1"
continue
fi