Skip to content

Commit

Permalink
fix: added missing "v" to source field in podspec (#619)
Browse files Browse the repository at this point in the history
The tags are being named with a "v" and as such, the podspec needs to resolve the tags by including the "v" in the `source` field
  • Loading branch information
mdstroebel authored and jgcmarins committed Oct 30, 2019
1 parent 796ac3a commit d88e542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RNShare.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Pod::Spec.new do |s|
s.license = "MIT"
s.author = { "Esteban Fuentealba" => "efuentealba@json.cl" }
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/react-native-community/react-native-share.git", :tag => "#{s.version}" }
s.source = { :git => "https://github.com/react-native-community/react-native-share.git", :tag => "v#{s.version}" }

s.source_files = "ios/**/*.{h,m}"

Expand Down

0 comments on commit d88e542

Please sign in to comment.