From 1db8268ea25034aa4f44b64978c9f789e0faebc8 Mon Sep 17 00:00:00 2001 From: Thorny <35000252+happy-thorny@users.noreply.github.com> Date: Wed, 1 May 2019 22:12:22 +0700 Subject: [PATCH] fix: correct git tag format for podspec #93 --- RNCAsyncStorage.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RNCAsyncStorage.podspec b/RNCAsyncStorage.podspec index 395d04ca..5b25fd9e 100644 --- a/RNCAsyncStorage.podspec +++ b/RNCAsyncStorage.podspec @@ -12,7 +12,7 @@ Pod::Spec.new do |s| s.homepage = package['homepage'] s.platform = :ios, "9.0" - s.source = { :git => "https://github.com/react-native-community/react-native-async-storage.git", :tag => "#{s.version}" } + s.source = { :git => "https://github.com/react-native-community/react-native-async-storage.git", :tag => "v#{s.version}" } s.source_files = "ios/**/*.{h,m}" s.dependency 'React'