Mercurial > ec-dotfiles
annotate update-vendor @ 572:a163d6875651
Vendor autoloads.
author | nanaya <me@myconan.net> |
---|---|
date | Wed, 24 Jun 2015 13:41:51 +0900 |
parents | update-vim-syntax@50fd59a959ea |
children | 184635b813e1 |
rev | line source |
---|---|
508
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
1 #!/bin/sh |
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
2 |
572 | 3 set -u |
4 set -e | |
5 | |
6 | |
508
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
7 if [ ! command -v wget > /dev/null 2>&1 ]; then |
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
8 echo wget is required |
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
9 exit 1 |
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
10 fi |
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
11 |
572 | 12 |
508
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
13 _get() { |
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
14 wget --no-check-certificate -nv "$1" |
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
15 } |
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
16 |
572 | 17 |
18 ( | |
19 cd "$(dirname "$0")/vendor/vim-autoload" | |
20 | |
21 rm -f *.vim | |
22 _get "https://raw.githubusercontent.com/tpope/vim-pathogen/master/autoload/pathogen.vim" | |
23 ) | |
24 | |
508
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
25 |
572 | 26 ( |
27 cd "$(dirname "$0")/vendor/vim-syntax" | |
28 | |
29 rm -f *.vim | |
30 _get https://vim.googlecode.com/hg/runtime/syntax/ruby.vim | |
31 _get https://vim.googlecode.com/hg/runtime/syntax/eruby.vim | |
32 _get https://vim.googlecode.com/hg/runtime/syntax/scss.vim | |
33 _get https://github.com/kchmck/vim-coffee-script/raw/master/syntax/coffee.vim | |
34 _get https://github.com/slim-template/vim-slim/raw/master/syntax/slim.vim | |
35 _get https://github.com/elzr/vim-json/raw/master/syntax/json.vim | |
36 _get https://raw.githubusercontent.com/xsbeats/vim-blade/master/syntax/blade.vim | |
37 _get https://raw.githubusercontent.com/groenewege/vim-less/master/syntax/less.vim | |
38 ) |