mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Prevent symlinks from overwriting files
This commit is contained in:
parent
9b2c000471
commit
df8e8ce996
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ pushd build
|
||||||
# this specifically addresses icu4c issues but nothing else.
|
# this specifically addresses icu4c issues but nothing else.
|
||||||
export ICU_LIB="$(brew --prefix icu4c)/lib"
|
export ICU_LIB="$(brew --prefix icu4c)/lib"
|
||||||
mkdir -p nheko.app/Contents/Frameworks
|
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
|
sudo macdeployqt nheko.app -dmg
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue