mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-22 08:48:21 +00:00
14 lines
188 B
Bash
14 lines
188 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
echo 'Running bundle install...'
|
||
|
|
bundle install
|
||
|
|
|
||
|
|
echo 'Running pod install...'
|
||
|
|
pod install
|
||
|
|
|
||
|
|
echo 'Setting up example projects...'
|
||
|
|
./scripts/pod_setup.sh
|
||
|
|
|
||
|
|
echo 'Done!'
|
||
|
|
echo ''
|