Skip to content

Instantly share code, notes, and snippets.

@loufq
Created April 27, 2014 10:45
Show Gist options
  • Save loufq/11342653 to your computer and use it in GitHub Desktop.
Save loufq/11342653 to your computer and use it in GitHub Desktop.
install xcode plugin sheel
#https://github.com/supermarin/Alcatraz/blob/master/Scripts/install.sh
#!/bin/sh
DOWNLOAD_URI=https://github.com/supermarin/Alcatraz/releases/download/1.0.4/Alcatraz.tar.gz
PLUGINS_DIR="${HOME}/Library/Application Support/Developer/Shared/Xcode/Plug-ins"
mkdir -p "${PLUGINS_DIR}"
curl -L $DOWNLOAD_URI | tar xvz -C "${PLUGINS_DIR}"
echo "Alcatraz successfuly installed!!1!🍻 Please restart your Xcode."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment