Skip to content

Instantly share code, notes, and snippets.

@ldx
Last active December 16, 2015 16:49
Show Gist options
  • Save ldx/5466020 to your computer and use it in GitHub Desktop.
Save ldx/5466020 to your computer and use it in GitHub Desktop.
#!/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