Issue when creating my first CocoaPod

后端 未结 4 1936
野性不改
野性不改 2021-01-01 10:18

I am trying to create my first pod and is following this tutorial: http://www.sitepoint.com/creating-cocoapods/

But when I do:

pod spec lint GLLingoM         


        
4条回答
  •  醉酒成梦
    2021-01-01 10:46

    Sometimes the following command line will create a problem, if you are copy pasting into terminal.

    Example

    //incorrect
    git tag ‘0.1.0’
    //Will create a tag ‘0.1.0’
    
    //correct
    git tag '0.1.0'
    //will create a tag 0.1.0
    

    So better to type the single quotes, it may prevent this kind of unexpected issues. And go check your repo whether these tags are created properly.

提交回复
热议问题