v1.04 - change order of operations

master
RandomNinjaAtk 3 years ago committed by GitHub
parent f39211284f
commit 469662751b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2,7 +2,7 @@
export LC_ALL=C.UTF-8 export LC_ALL=C.UTF-8
export LANG=C.UTF-8 export LANG=C.UTF-8
TITLESHORT="APP" TITLESHORT="APP"
ScriptVersion="1.03" ScriptVersion="1.04"
set -e set -e
set -o pipefail set -o pipefail
@ -249,13 +249,14 @@ Main () {
AudioQualityMatch "$1" AudioQualityMatch "$1"
if [ "${ReplaygainTagging}" = TRUE ]; then
replaygain "$1"
fi
if [ "${BeetsTagging}" = TRUE ]; then if [ "${BeetsTagging}" = TRUE ]; then
beets "$1" beets "$1"
fi fi
if [ "${ReplaygainTagging}" = TRUE ]; then
replaygain "$1"
fi
echo "" echo ""
echo "Post Processing Complete!" && exit 0 echo "Post Processing Complete!" && exit 0

Loading…
Cancel
Save