Prevent symlinks from overwriting files

This commit is contained in:
redsky17 2019-02-05 12:06:59 +00:00
parent 9b2c000471
commit df8e8ce996
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ pushd build
# this specifically addresses icu4c issues but nothing else.
export ICU_LIB="$(brew --prefix icu4c)/lib"
mkdir -p nheko.app/Contents/Frameworks
find ${ICU_LIB} -type l -name "*.dylib" -exec cp -a {} nheko.app/Contents/Frameworks/ \; || true
find ${ICU_LIB} -type l -name "*.dylib" -exec cp -a -n {} nheko.app/Contents/Frameworks/ \; || true
sudo macdeployqt nheko.app -dmg