Last active
June 24, 2019 22:48
-
-
Save christopherfujino/f9ebf2d64a2609321fc8251a884cc56a to your computer and use it in GitHub Desktop.
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 | |
if [ -z "$1" ]; then | |
echo "Usage: flutter-brew-linker.sh COMMAND" | |
echo "where COMMAND is either \"unlink\" or \"link\"." | |
exit 99 | |
fi | |
COMMAND="$1" | |
PACKAGES=( | |
ideviceinstaller | |
ios-deploy | |
libimobiledevice | |
libplist | |
libusb | |
usbmuxd | |
) | |
for package in ${PACKAGES[@]}; do | |
brew $COMMAND $package | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment