Sat, 04 Apr 2015 21:39:05 -0400
enable signature handling and disable workaround
#!/bin/bash set -euo pipefail IFS=$'\n\t' if [ ! -L ~/userprofile ]; then echo "Please link ~/userprofile" fi USERPROFILE="$(readlink ~/userprofile)" cd `hg root` cp -vu .vimrc ${USERPROFILE}/_vimrc if [ ! -d ${USERPROFILE}/vimfiles ]; then mkdir ${USERPROFILE}/vimfiles fi cp -vuRL -t ${USERPROFILE}/vimfiles .vim/*