Skip to content

Instantly share code, notes, and snippets.

@gaeng2y
Forked from iamchiwon/pod_update.sh
Created February 2, 2023 05:51
Show Gist options
  • Save gaeng2y/b048775516d8c352a58fdd0123d05696 to your computer and use it in GitHub Desktop.
Save gaeng2y/b048775516d8c352a58fdd0123d05696 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