Last active
June 12, 2019 20:09
-
-
Save rsaenzi/d764f30ba5b64201416e0b51c7e1e9ed to your computer and use it in GitHub Desktop.
Bash file for MacOS to keep the iOS project Groups synced to Folders, and pods updated
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Project.command | |
# | |
# Created by Rigoberto Sáenz Imbacuán (https://www.linkedin.com/in/rsaenzi/) | |
# Copyright © 2017. All rights reserved. | |
# | |
echo " " | |
echo "Go to Project" | |
cd "/Files/Projects/iOS/ProjectFolder" | |
sleep 1 | |
echo " " | |
echo "Synx" | |
echo " " | |
synx "Project.xcodeproj" | |
echo " " | |
echo "pod install" | |
echo " " | |
cd "/Files/Projects/iOS/ProjectFolder" | |
pod install | |
echo " " | |
echo "pod update" | |
echo " " | |
pod update | |
echo " " | |
echo "Finish!" | |
echo " " | |
sleep 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment