IGListKit/Examples/pod_setup.sh
Jesse Squires 4e42712e5b fixup common files and podspec, #270
Summary:
- Add missing common files
- Fix podspec for common files
- Pod install all examples

Reviewed By: rnystrom

Differential Revision: D4350871

fbshipit-source-id: 708ebe6ce66caed75af5b2ac18920dcf45567d16
2016-12-19 21:44:13 -08:00

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 ''