ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • Xcode 14.3 archive중 rsync 오류나는 경우
    카테고리 없음 2023. 4. 4. 14:47

    Cocoapods사용하고 있고, Xcode 14.3 업데이트후 archive 빌드 중 거의 끝 부분에 framework rsync 관련 오류나는 경우,

    경로가 잘못지정되어 그렇다.

     

    프로젝트 네비게이터에서

    Pods > Targets Support Files > Pods-<프로젝트명> 의
    Pods-<프로젝트명>-frameworks.sh  파일에서

    44line 의


      if [ -L "${source}" ]; then

        echo "Symlinked..."

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

     fi


    에서

     

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

     source="$(readlink -f "${source}")" 로 수정해준다.

     

     

    참고: https://developer.apple.com/forums/thread/725230?answerId=746897022#746897022

    반응형

    댓글

Designed by Tistory.