v1.04 - change order of operations

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

Loading…
Cancel
Save