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:
parent
fe39b5addd
commit
ed4f5bf918
@ -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'
|
||||
|
||||
Loading…
Reference in New Issue
Block a user