[cmd_import_tracks] Fixed typo in srcList array for loop

This commit is contained in:
ayakael 2018-05-18 19:54:38 -07:00
parent 299fe264ac
commit 6e637133b8
No known key found for this signature in database
GPG key ID: 575626A4AE5F4026

View file

@ -18,7 +18,7 @@ cmd_import_tracks() {
rm -Rvf "${GIT_DIR}/.import" >/dev/null 2>&1
for src in ${srcList}; do
for src in ${srcList[@]}; do
if iszip ${src}; then
_msg EXEC "Uncompressing ${src}"
7z x "${src}" -o"${_OPT_TMP}/$(basename ${src})/" -y >${STDERR} 2>&1