commit 0f4410b6463d1881f3c805208f02d9f007683037
parent 9a62b65316a17225a7c0b4d9680ce3c5905d6b92
Author: Alex Balgavy <a.balgavy@gmail.com>
Date: Mon, 14 Aug 2017 17:40:46 +0200
Adds a dash to "Hip Hop"
Because that's how it's apparently supposed to be, and Discogs has no dash by default. Also, that's how my library's set up. ¯\_(ツ)_/¯
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/itunes_style_getter b/itunes_style_getter
@@ -46,6 +46,7 @@ select yn in "Yes" "No"; do
case $opt in
*)
finalg=$(echo $opt | sed -e 's/"//g')
+ if [[ $finalg = "Hip Hop" ]]; then finalg="Hip-Hop"; fi
break;;
esac
done
@@ -53,6 +54,7 @@ select yn in "Yes" "No"; do
No)
echo "Write your own then:"
read finalg
+ if [[ $finalg = "Hip Hop" ]]; then finalg="Hip-Hop"; fi
break;;
esac
done