来自 `pod lib lint` 的意外提示
Unexpected NOTE from `pod lib lint`
我正在创建自己的 CocoaPods,这是我的第一次。当我 运行 pod lib lint
验证时,我的 CocoaPods 通过了验证,但我意外地得到了这些注释。
-> SwiftyPod (0.0.1)
- NOTE | xcodebuild: note: Using new build system
- NOTE | xcodebuild: note: Building targets in parallel
- NOTE | [iOS] xcodebuild: note: Planning build
- NOTE | [iOS] xcodebuild: note: Constructing build description
- NOTE | [iOS] xcodebuild: warning: Skipping code signing because the target does not have an Info.plist file and one is not being generated automatically. (in target 'App' from project 'App')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'SwiftyPod' from project 'Pods')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'Pods-App' from project 'Pods')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'App' from project 'App')
SwiftyPod passed validation.
我正在使用 Xcode 11.5 (11E608c) 和 CocoaPod 1.9.3。
我不确定如何修复它。有办法绕过它吗?如果有人知道如何解决它,请帮助我。
谢谢。
据我所知,此消息是由 xcodebuild
生成的,可以忽略。
我正在创建自己的 CocoaPods,这是我的第一次。当我 运行 pod lib lint
验证时,我的 CocoaPods 通过了验证,但我意外地得到了这些注释。
-> SwiftyPod (0.0.1)
- NOTE | xcodebuild: note: Using new build system
- NOTE | xcodebuild: note: Building targets in parallel
- NOTE | [iOS] xcodebuild: note: Planning build
- NOTE | [iOS] xcodebuild: note: Constructing build description
- NOTE | [iOS] xcodebuild: warning: Skipping code signing because the target does not have an Info.plist file and one is not being generated automatically. (in target 'App' from project 'App')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'SwiftyPod' from project 'Pods')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'Pods-App' from project 'Pods')
- NOTE | [iOS] xcodebuild: note: Execution policy exception registration failed and was skipped: Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted" (in target 'App' from project 'App')
SwiftyPod passed validation.
我正在使用 Xcode 11.5 (11E608c) 和 CocoaPod 1.9.3。
我不确定如何修复它。有办法绕过它吗?如果有人知道如何解决它,请帮助我。
谢谢。
据我所知,此消息是由 xcodebuild
生成的,可以忽略。