xcodebuild 명령을 통해 Jenkins를 사용하여 iOS 응용 프로그램을 빌드하려고합니다.xcodebuild를 사용하여 대상 이름을 Umlaut로 변경하십시오.
문제는 xcodebuild가 독일어 Umlaut ü로 대상을 검색하지 않는다는 것입니다.
$ /usr/bin/xcodebuild -target AppNameWithUmlautü -configuration Debug clean build
는 나에게 다음과 같은 오류를 제공합니다 :
이xcodebuild -list
Information about project "AppNameWithUmlautü":
Targets:
AppNameWithUmlautü
AppNameWithOutUmlaut
Build Configurations:
Debug
Release
Ad Hoc
If no build configuration is specified and -scheme is not passed then "Release" is used. This project contains no schemes.
움라우트없는 대상이 작동합니다
xcodebuild: error: The project 'AppNameWithUmlautü.xcodeproj' does not contain a target named 'AppNameWithUmlautü'.
내가 다음 명령을 사용하여 대상의 존재를 확인.
안녕 마틴, 답변 해 주셔서 감사합니다. 문제를 이해하는 데 도움이되었지만 대상 이름을 "ü"대신 "ue"를 사용하여 바꿨습니다. –
네, 그게 아마도 더 좋은 해결책 일 겁니다. –