mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-06 06:58:26 +00:00
Summary: - Update CocoaPods + Gems - Update SwiftLint version - Fix lint errors - Fix `pod_setup.sh` script, move to `scripts/` (should now be run from root dir) - Run `pod_setup.sh` Closes https://github.com/Instagram/IGListKit/pull/1038 Differential Revision: D6602297 Pulled By: rnystrom fbshipit-source-id: 1bf69611e041903cf982fe7d9a95197729e44d94
22 lines
346 B
Bash
Executable file
22 lines
346 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo 'Setting up iOS examples...'
|
|
cd Examples/Examples-iOS/
|
|
bundle exec pod install
|
|
echo ''
|
|
cd ../..
|
|
|
|
echo 'Setting up tvOS examples...'
|
|
cd Examples/Examples-tvOS/
|
|
bundle exec pod install
|
|
echo ''
|
|
cd ../..
|
|
|
|
echo 'Setting up macOS examples...'
|
|
cd Examples/Examples-macOS/
|
|
bundle exec pod install
|
|
echo ''
|
|
cd ../..
|
|
|
|
echo 'Done!'
|
|
echo ''
|