[gen_metatrack] Fixes typo

This commit is contained in:
ayakael 2018-07-19 06:46:24 -08:00
parent 99a0772511
commit c5da64790b
No known key found for this signature in database
GPG key ID: 575626A4AE5F4026

View file

@ -21,7 +21,7 @@ gen_metatrack() {
local TOTALTRACKS="$(grep -e "TRACK [0-9][0-9] AUDIO" "${CUE}" | wc -l)"
local COUNT=1
for ${COUNT} -le ${TOTALTRACKS} ]]; do
while [[ ${COUNT} -le ${TOTALTRACKS} ]]; do
local fileList[${COUNT}]=$(printf "\'${WRK_DIR}/split-track%02d.flac\'\t" ${COUNT})
local COUNT=$(( ${COUNT} + 1 ))
done