본문 바로가기
개발노트/iOS

[Xcode] some files could not be transferred .... 에러 해결기

by 전지적진영시점 2023. 5. 3.
반응형

개발 환경

---------------------------------

OS : Mac

개발 툴 : xcode

개발 언어 : Swift

xcode version : 14.3

min iOS version : 13.0 

---------------------------------

 

오늘 만난 에러 ㅡㅡ 

 

 

Showing All Messages

rsync error: some files could not be transferred (code 23) at /AppleInternal/Library/BuildRoots/aaefcfd1-5c95-11ed-8734-2e32217d8374/Library/Caches/com.apple.xbs/Sources/rsync/rsync/main.c(996) [sender=2.6.9]

 

rsync 오류: /AppleInternal/Library/BuildRoots에서 일부 파일을 전송할 수 없습니다

 

Showing All Messages

Command PhaseScriptExecution failed with a nonzero exit code

 

Xcode를 14.3으로 업데이트 한 후 아카이브를 생성할 때마다 발생하는 에러이다.

위 같은 에러를 만나면 이 게시물의 해결방안을 한번 따라해보자

나는 해결됐다.

 

프로젝트 내 -frameworks.sh 파일을 업데이트 해줘야한다.

 

위 파일은 아래 경로에 있다. 차근차근 따라가보자.

APPNAME/ios/App/Pods/Target Support Files/Pods-App/Pods-App-frameworks.sh

 

파일을 찾았으면 들어가서

 

source="$(readlink "${source}")"

 

위 코드를 아래 코드로 바꿔준다. 중간에 -f 하나 추가해주는거다.

 

source="$(readlink -f "${source}")"

 

그런 후 프로젝트를 다시 실행하고 

clean Build Folder 를 해준다 이거는 해야 맘이 편하니,.,,ㅎ

 

이상이다.

반응형

댓글