mirror of
https://github.com/tappollo/IGListKit.git
synced 2026-05-13 17:21:14 +08:00
Summary: - Add script for example setup - Run pod install and check-in changes Reviewed By: dshahidehpour Differential Revision: D4250015 fbshipit-source-id: 51e7342d698bc9874bbbcfb8e784fe62e82d1ac6
15 lines
176 B
Bash
Executable File
15 lines
176 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo 'Setting up iOS examples...'
|
|
cd Examples-iOS/
|
|
pod install
|
|
cd ..
|
|
|
|
echo 'Setting up tvOS examples...'
|
|
cd Examples-tvOS/
|
|
pod install
|
|
cd ..
|
|
|
|
echo 'Done!'
|
|
echo ''
|