mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-18 14:58:34 +00:00
Summary: - Add script for example setup - Run pod install and check-in changes Reviewed By: dshahidehpour Differential Revision: D4250015 fbshipit-source-id: 51e7342d698bc9874bbbcfb8e784fe62e82d1ac6
14 lines
176 B
Bash
Executable file
14 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 ''
|