Last active
December 16, 2015 16:49
-
-
Save ldx/5466020 to your computer and use it in GitHub Desktop.
This file contains 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 | |
# | |
# curl -k -L https://gist.github.com/ldx/5466020/raw/|sh | |
# - or - | |
# wget -O - https://gist.github.com/ldx/5466020/raw/|sh | |
# | |
ssh-keyscan github.com | |
TMPDIR=`mktemp -d /tmp/temp.XXXX` | |
trap "rm -rf $TMPDIR" EXIT | |
which git || exit 1 | |
GIT_SSL_NO_VERIFY=true git clone --recursive https://github.com/ldx/dotfiles.git $TMPDIR || exit 1 | |
cd $TMPDIR && make |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment