summaryrefslogtreecommitdiff
path: root/bin/bstraph.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/bstraph.sh')
-rwxr-xr-xbin/bstraph.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/bin/bstraph.sh b/bin/bstraph.sh
deleted file mode 100755
index 46d6ba84..00000000
--- a/bin/bstraph.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-. $HOME/src/dotfiles/.shenv
-
-# Bootstrap home directory after dotfiles repository successfully
-# cloned (see ~/bin/insinuate-dotfiles). This script should
-# definitely be POSIX sh
-
-set -e
-
-if ! [ -e "$HOME/.mrconfig" ]; then
- cat >"$HOME/.mrconfig" <<EOF
-# -*- mode: conf -*-
-
-include = cat ~/src/dotfiles/lib-src/mr/config
-EOF
-fi
-(
- cd $HOME/src/dotfiles
- mr fixups
- mr stow
-
- if [ -z $(git remote) ]; then
- # don't set up any tracking branches or fetch it
- git remote add origin athena:dotfiles
- fi
-)