Skip to content

Instantly share code, notes, and snippets.

@intergalacticspacehighway
Last active April 12, 2023 07:38
Show Gist options
  • Save intergalacticspacehighway/336a33444c5a6221e3e6fcc46c642794 to your computer and use it in GitHub Desktop.
Save intergalacticspacehighway/336a33444c5a6221e3e6fcc46c642794 to your computer and use it in GitHub Desktop.
Some commands for reference
// Remove node_modules, iOS Pods and android build in nested folders from current pwd
find . \( -type d -name "node_modules" -o -type d -path "*/ios/Pods" -o -type d -path "*/android/build" \) -exec rm -rf '{}' +
// command to approve "developer not verified error" executables from terminal
xattr -d com.apple.quarantine $(which <name-of-executable>)
// xcode build clean
xcodebuild clean -workspace ios/{projectName}.xcworkspace -scheme {projectName}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment