Skip to content

Instantly share code, notes, and snippets.

@e-sung
Created August 4, 2021 05:47
Show Gist options
  • Save e-sung/42a85b6fb82334adad60bc30b8fc1fed to your computer and use it in GitHub Desktop.
Save e-sung/42a85b6fb82334adad60bc30b8fc1fed to your computer and use it in GitHub Desktop.
Pod Install 해야 하는지
#!/bin/zsh
diff "Podfile.lock" "Pods/Manifest.lock" > /dev/null
if [ $? != 0 ] ; then
echo "Pod Install 해야 합니다"
else
echo "Pod Install 안해도 됩니다"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment