mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-23 01:08:27 +00:00
15 lines
176 B
Bash
15 lines
176 B
Bash
|
|
#!/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 ''
|