[import_track] Now copies instead of moves when consolidating
This commit is contained in:
parent
651cd280c9
commit
8b480f22b8
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ import_track() {
|
|||
|
||||
# Moving track to TRACK_DIR
|
||||
echo "Moving ${TRACK} to ${TRACK_DIR}"
|
||||
mv "${TRACK}" "${TRACK_DIR}/$(printf %02d ${TRACKNUMBER}).${SOURCE}.flac"
|
||||
cp "${TRACK}" "${TRACK_DIR}/$(printf %02d ${TRACKNUMBER}).${SOURCE}.flac"
|
||||
local EXIT=$?
|
||||
[[ ${EXIT} -eq 0 ]] && return 0 || return 1
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue