[import_dir] Fixed issue with find

This commit is contained in:
ayakael 2018-05-18 18:37:26 -07:00
parent 4c5fbe16a3
commit 74ec738b95
No known key found for this signature in database
GPG key ID: 575626A4AE5F4026

View file

@ -16,7 +16,7 @@ import_dir() {
local GIT_DIR="${1}"
local TRACK_DIR="${2}"
local trackList=($(find ${TRACK_DIR} -maxdepth 1 -name *.flac -print '%p\t'))
local trackList=($(find ${TRACK_DIR} -maxdepth 1 -name *.flac -printf '%p\t'))
# Join trackList
_msg EXEC "Generating joined image"