[cmd_import_tracks] Fixed typo

This commit is contained in:
ayakael 2018-05-18 18:07:24 -07:00
parent 8bdaa1bf57
commit 3d33cf8f50
No known key found for this signature in database
GPG key ID: 575626A4AE5F4026

View file

@ -33,7 +33,7 @@ cmd_import_tracks() {
done
done
local importList=($(find ${GIT_DIR}/.import/ -maxdepth 1 -type d -print '%p\t'))
local importList=($(find ${GIT_DIR}/.import/ -maxdepth 1 -type d -printf '%p\t'))
for import in ${importList[@]}; do
_msg EXEC "Importing ${import}"
import_dir "${GIT_DIR}" "${import}" >${STDERR} 2>&1