-
[Flutter, iOS] rsync error: some files could not be transferred (code 23) at /AppleInternal/Library/BuildRoots/97f6331a-ba75-11ed-a4bc-863efbbaf80d/Library/Caches/com.apple.xbs/Sources/rsync/rsync/main.c(996) [sender=2.6.9]Command PhaseScriptExecution f..Flutter ์ค๋ฅ 2023. 4. 10. 04:33
error
rsync error: some files could not be transferred (code 23) at /AppleInternal/Library/BuildRoots/97f6331a-ba75-11ed-a4bc-863efbbaf80d/Library/Caches/com.apple.xbs/Sources/rsync/rsync/main.c(996) [sender=2.6.9] Command PhaseScriptExecution failed with a nonzero exit code
solution
ios\Pods\Target Support Files\Pods-Runner\Pods-Runner-frameworks.sh
Change code
if [ -L "${source}" ]; then echo "Symlinked..." source="$(readlink "${source}")"To
if [ -L "${source}" ]; then echo "Symlinked..." source="$(readlink -f "${source}")"Add "-f"
'Flutter ์ค๋ฅ' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ