fix: the git tag format in the podspec (#2045) [skip release]

The format of the git tag which the podspec file specified did not match the ones which were being published.
This commit is contained in:
Matt Oakes 2019-01-11 09:22:23 +00:00 committed by Laurin Quast
parent fe39b5addd
commit ed4f5bf918

View File

@ -10,7 +10,7 @@ Pod::Spec.new do |s|
s.license = package['license']
s.author = package['author']
s.homepage = package['homepage']
s.source = { :git => 'https://github.com/react-native-community/react-native-camera', :tag => s.version }
s.source = { :git => 'https://github.com/react-native-community/react-native-camera', :tag => "v#{s.version}" }
s.requires_arc = true
s.platform = :ios, '9.0'