[cmd_deploy] Now does not mention target during remove operation

This commit is contained in:
ayakael 2018-04-15 21:59:01 -04:00
parent 65c9b5b937
commit 88c6e17d52
No known key found for this signature in database
GPG key ID: 575626A4AE5F4026

View file

@ -42,7 +42,7 @@ cmd_deploy() {
# Cleans target of removable TRACKID
local COUNT=1
for removableid in ${removableidList[@]}; do
echo "[ ${COUNT} / ${#removableidList[@]} ] Removing ${removableid} from ${TARGET}"
echo "[ ${COUNT} / ${#removableidList[@]} ] Removing ${removableid}"
deploy_rm "${TARGET}" "${DB_FILE}" ${removableid} >${STDERR} 2>&1
[[ $? -eq 0 ]] || { echo "[>>>>>>] Error reported"; cat ${STDERR}; local ERR=true; }
local COUNT=$(( ${COUNT} + 1 ))