[cmd_import] Fixed function names

This commit is contained in:
ayakael 2018-05-18 13:47:48 -07:00
parent 817a79b4d4
commit 00bdfdc025
No known key found for this signature in database
GPG key ID: 575626A4AE5F4026

View file

@ -16,7 +16,7 @@
#
# tracks Import tracks, or archive containing tracks, into git directory
#
# DEPENDENCIES src/import_tracks src/import_images
# DEPENDENCIES src/cmd_import_tracks src/cmd_import_images
#
# }
@ -25,5 +25,5 @@ cmd_import() {
local GIT_DIR="${2}"; shift 2
local dirList=(${@})
eval import_${CMD} "${GIT_DIR}" ${@}
eval cmd_import_${CMD} "${GIT_DIR}" ${@}
}