IGListKit/scripts/pod_setup.sh
Jesse Squires ae7f36f5c2 Update gems, fix warnings, pod install
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
2017-12-19 09:31:37 -08:00

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 ''