From 775f95a9317f8a5b22caf3c8f4983dfb1f087140 Mon Sep 17 00:00:00 2001 From: Nikita Semenov Date: Wed, 29 Mar 2023 15:28:38 +0300 Subject: [PATCH] fix: podspecs file for TIUIElements --- TIUIElements/TIUIElements.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TIUIElements/TIUIElements.podspec b/TIUIElements/TIUIElements.podspec index c7388d8a..9b841ec8 100644 --- a/TIUIElements/TIUIElements.podspec +++ b/TIUIElements/TIUIElements.podspec @@ -11,12 +11,12 @@ Pod::Spec.new do |s| s.ios.deployment_target = '11.0' s.swift_versions = ['5.3'] - sources = '**/Sources/**/*.swift' + sources = '/Sources/**/*' if ENV["DEVELOPMENT_INSTALL"] # installing using :path => s.source_files = sources s.exclude_files = s.name + '.app' else - s.source_files = s.name + '/' + sources + s.source_files = s.name + sources s.exclude_files = s.name + '/*.app' end