mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-14 12:58:34 +00:00
Summary: - Add missing common files - Fix podspec for common files - Pod install all examples Reviewed By: rnystrom Differential Revision: D4350871 fbshipit-source-id: 708ebe6ce66caed75af5b2ac18920dcf45567d16
22 lines
274 B
Bash
Executable file
22 lines
274 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo 'Setting up iOS examples...'
|
|
cd Examples-iOS/
|
|
pod install
|
|
echo ''
|
|
cd ..
|
|
|
|
echo 'Setting up tvOS examples...'
|
|
cd Examples-tvOS/
|
|
pod install
|
|
echo ''
|
|
cd ..
|
|
|
|
echo 'Setting up macOS examples...'
|
|
cd Examples-macOS/
|
|
pod install
|
|
echo ''
|
|
cd ..
|
|
|
|
echo 'Done!'
|
|
echo ''
|