Prevent garbage toml-e files on macOS

Newer macOS versions output `uname` as "Darwin", while older
versions output "darwin".
This commit is contained in:
Roderick van Domburg 2024-10-15 21:47:02 +02:00
parent 1d80a4075f
commit 09e4c3e12b
No known key found for this signature in database
GPG key ID: FE2585E713F9F30A

View file

@ -8,15 +8,19 @@ cd $WORKINGDIR
crates=( "protocol" "oauth" "core" "discovery" "audio" "metadata" "playback" "connect" "librespot" ) crates=( "protocol" "oauth" "core" "discovery" "audio" "metadata" "playback" "connect" "librespot" )
OS=`uname`
function replace_in_file() { function replace_in_file() {
if [ "$OS" == 'darwin' ]; then OS=`uname`
# for MacOS shopt -s nocasematch
case "$OS" in
darwin)
# for macOS
sed -i '' -e "$1" "$2" sed -i '' -e "$1" "$2"
else ;;
*)
# for Linux and Windows # for Linux and Windows
sed -i'' -e "$1" "$2" sed -i'' -e "$1" "$2"
fi ;;
esac
} }
function switchBranch { function switchBranch {