Created
November 24, 2019 16:32
-
-
Save wkronmiller/79dc36cfc1a2310a6d5aa2e97e16539c to your computer and use it in GitHub Desktop.
Build input.filelist and output.filelist for Carthage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo '' > input.xcfilelist | |
find Carthage/Build/iOS -name *.framework -exec echo '$(SRCROOT}'/{} \; >> input.xcfilelist | |
echo '' > output.xcfilelist | |
find Carthage/Build/iOS -name *.framework -exec basename {} \; | xargs -I {} -n1 echo '$(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/'{} >> output.xcfilelist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment