Skip to content

Instantly share code, notes, and snippets.

@androidStern
Last active February 17, 2016 06:34
Show Gist options
  • Select an option

  • Save androidStern/b841d63a839ed9053318 to your computer and use it in GitHub Desktop.

Select an option

Save androidStern/b841d63a839ed9053318 to your computer and use it in GitHub Desktop.
Install winterfell
#!/bin/sh
if [ ! -d "$HOME/.winterfell" ]; then
echo "Installing WINTERFELL for the first time"
git clone --depth=1 https://github.com/androidStern/winterfell.git "$HOME/.winterfell"
cd "$HOME/.winterfell"
[ "$1" = "ask" ] && export ASK="true"
rake install
else
echo "WINTERFELL is already installed"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment