This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| echo "=== Mango Pestbuster iOS Build ===" | |
| # Load shell profile to get npm/node in PATH | |
| export NVM_DIR="$HOME/.nvm" | |
| [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | |
| [ -f "$HOME/.zshrc" ] && source "$HOME/.zshrc" 2>/dev/null || true | |
| [ -f "$HOME/.bash_profile" ] && source "$HOME/.bash_profile" 2>/dev/null || true |