Can't update pod library

I have posted my HDTableDataSource component on Cocoapods. I have now updated the code version by adding code.

When trying to compile it with the "pod spec lint" command, it gives me the following error.

[!] /usr/local/bin/git clone https://github.com/\<GITHUB_USERNAME\>/HDTableDataSource.git /private/var/folders/fm/vxq9zgy52zq28lvcq0qwzpj80000gn/T/CocoaPods/Lint/Pods/HDTableDataSource --single-branch --depth 1 --branch 0.1.0

Cloning into '/private/var/folders/fm/vxq9zgy52zq28lvcq0qwzpj80000gn/T/CocoaPods/Lint/Pods/HDTableDataSource'...

fatal: unable to access 'https://github.com/<GITHUB_USERNAME>/HDTableDataSource.git/': The requested URL returned error: 400

      

Please help me to update my library. My library is at https://github.com/HarshitDaftary/HDTableDataSource

+3


source to share


1 answer


I solved this problem by running the following command

pod spec lint HDTableDataSource.podspec

      



My mistake was that I was doing 'pod spec lint', I was not passing the podspec file with it.

Thanks everyone for your answer. I will delete this question soon.

+3


source







All Articles