mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
Prevent garbage toml-e files on macOS
Newer macOS versions output `uname` as "Darwin", while older versions output "darwin".
This commit is contained in:
parent
1d80a4075f
commit
09e4c3e12b
1 changed files with 12 additions and 8 deletions
14
publish.sh
14
publish.sh
|
@ -8,15 +8,19 @@ cd $WORKINGDIR
|
|||
|
||||
crates=( "protocol" "oauth" "core" "discovery" "audio" "metadata" "playback" "connect" "librespot" )
|
||||
|
||||
OS=`uname`
|
||||
function replace_in_file() {
|
||||
if [ "$OS" == 'darwin' ]; then
|
||||
# for MacOS
|
||||
OS=`uname`
|
||||
shopt -s nocasematch
|
||||
case "$OS" in
|
||||
darwin)
|
||||
# for macOS
|
||||
sed -i '' -e "$1" "$2"
|
||||
else
|
||||
;;
|
||||
*)
|
||||
# for Linux and Windows
|
||||
sed -i'' -e "$1" "$2"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
function switchBranch {
|
||||
|
|
Loading…
Reference in a new issue