Prevent symlinks from overwriting files

pull/27/head
redsky17 6 years ago
parent 9b2c000471
commit df8e8ce996
  1. 2
      .ci/macos/deploy.sh

@ -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

Loading…
Cancel
Save