shrink_exports: move instead of delete

This commit is contained in:
Ingolf Wagner 2020-03-02 14:40:13 +08:00
parent b40cd3b8bf
commit 561fa1a455
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B

View file

@ -3,6 +3,7 @@
set -e set -e
PROJECTS_FOLDER=~/music-projects/Rendered-Projects PROJECTS_FOLDER=~/music-projects/Rendered-Projects
GARBADGE_FOLDER=/share
# file separator (needed to handle files with spaces) # file separator (needed to handle files with spaces)
IFS=" IFS="
@ -28,8 +29,6 @@ function run_ffmpeg(){
-loglevel error \ -loglevel error \
-af loudnorm \ -af loudnorm \
"${output}" "${output}"
} }
function delete(){ function delete(){
@ -37,8 +36,10 @@ function delete(){
if [[ -e "${input}" ]] if [[ -e "${input}" ]]
then then
info_log "delete : ${input}" info_log "move : ${input} to ${GARBADGE_FOLDER}"
rm "${input}" mv "${input}" "${GARBADGE_FOLDER}/$(basename ${input})"
#info_log "delete : ${input}"
#rm "${input}"
fi fi
} }