Last active
February 17, 2016 06:34
-
-
Save androidStern/b841d63a839ed9053318 to your computer and use it in GitHub Desktop.
Install winterfell
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/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