[cmd_deploy] Now has proper exit strategy in case of git annex get failure
This commit is contained in:
parent
240eb94286
commit
3b66148c9b
1 changed files with 2 additions and 1 deletions
|
@ -55,7 +55,8 @@ cmd_deploy() {
|
|||
# Processes deployableids (IMAGEIDs that have TRACKIDs that are not present in target, but are selected)
|
||||
if _if_array_contains ${imageid} ${deployableidList[@]}; then
|
||||
local GIT_GET=false
|
||||
[[ ! -f "${GIT_DIR}/${imageid}.flac" ]] && { git -C "${GIT_DIR}" annex get "${imageid}.flac" >/dev/null 2>&1; local GIT_GET=true; }
|
||||
[[ ! -f "${GIT_DIR}/${imageid}.flac" ]] && { git -C "${GIT_DIR}" annex get "${imageid}.flac" >${STDERR} 2>&1; local GIT_GET=true; }
|
||||
[[ $? -ne 0 ]] && { _ansi up 2; echo -en '\033[K'; echo "[ ${COUNT} / ${#updateableidList[@]} ] ${Imageid} could not be downloaded from server"; cat ${STDERR}; local ERR=true; continue; }
|
||||
deploy_cp "${GIT_DIR}" "${TARGET}" "${DB_FILE}" ${imageid} > ${STDERR} 2>&1
|
||||
[[ "${GIT_GET}" == "true" ]] && git -C "${GIT_DIR}" annex drop ${imageid}.flac >/dev/null 2>&1
|
||||
[[ $? -ne 0 ]] && { _ansi up 2; echo -en '\033[K'; echo "[ ${COUNT} / ${#updateableidList[@]} ] Copy of ${imageid} completed with errors"; cat ${STDERR}; local ERR=true; continue; }
|
||||
|
|
Loading…
Reference in a new issue