summary refs log tree commit diff
path: root/vendor.sh
blob: 2e228e54e546b51bc5d6c6a4daca64946960f427 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env zsh

# Pull latest versions of vendored files.

set -o errexit -o nounset -o pipefail

pull() {
  curl -s "https://raw.githubusercontent.com/$2" -o "$1"
  echo "$1"
}

pull {curtis/.config/nvim,tpope/vim-pathogen/master}/autoload/pathogen.vim