Skip to content

Instantly share code, notes, and snippets.

@iamchiwon
Last active February 2, 2023 05:51
Show Gist options
  • Save iamchiwon/1cd9da2e5347f918ac7549d19fef85cb to your computer and use it in GitHub Desktop.
Save iamchiwon/1cd9da2e5347f918ac7549d19fef85cb to your computer and use it in GitHub Desktop.
Xcode behavior 용: pod 업데이트 하기
#!/bin/bash
# move project dir
PROJECT_HOME=`pwd`
echo "cd $PROJECT_HOME" > /tmp/tmp.sh
# pod init & update
echo "pod update" >> /tmp/tmp.sh
chmod +x /tmp/tmp.sh
open -a Terminal /tmp/tmp.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment