Skip to content

Instantly share code, notes, and snippets.

@rsaenzi
Last active June 12, 2019 20:09
Show Gist options
  • Save rsaenzi/d764f30ba5b64201416e0b51c7e1e9ed to your computer and use it in GitHub Desktop.
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
#
# 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