diff options
author | June McEnroe <curtis.mcenroe@adgear.com> | 2016-07-15 10:09:35 -0400 |
---|---|---|
committer | June McEnroe <curtis.mcenroe@adgear.com> | 2016-07-15 10:10:05 -0400 |
commit | 7966b7c035c97f3f5648ca576d139c84e3c47cd3 (patch) | |
tree | f0889c7fd773a278ece7afeaef445af113c645f6 | |
parent | Use vi editing mode in readline (diff) | |
download | src-7966b7c035c97f3f5648ca576d139c84e3c47cd3.tar.gz src-7966b7c035c97f3f5648ca576d139c84e3c47cd3.zip |
Add vendoring script
-rwxr-xr-x | vendor.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor.sh b/vendor.sh new file mode 100755 index 00000000..9b5c9b39 --- /dev/null +++ b/vendor.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# 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 {.config/nvim,morhetz/gruvbox/master}/colors/gruvbox.vim +pull {.config/nvim,tpope/vim-pathogen/master}/autoload/pathogen.vim |