Mercurial > ec-dotfiles
annotate update-vendor @ 647:5bd223d5a97f
Use better typescript syntax
author | nanaya <me@nanaya.pro> |
---|---|
date | Wed, 16 Sep 2020 15:35:25 +0900 |
parents | 758ced52ee62 |
children | 56ac9d97d81b |
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 | |
578
184635b813e1
Whoops, has been using wrong syntax
nanaya <me@myconan.net>
parents:
572
diff
changeset
|
7 if command -v wget > /dev/null 2>&1; then : |
184635b813e1
Whoops, has been using wrong syntax
nanaya <me@myconan.net>
parents:
572
diff
changeset
|
8 else |
508
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
9 echo wget is required |
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
10 exit 1 |
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
11 fi |
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
12 |
572 | 13 |
508
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
14 _get() { |
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
15 wget --no-check-certificate -nv "$1" |
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
16 } |
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
17 |
572 | 18 |
19 ( | |
20 cd "$(dirname "$0")/vendor/vim-autoload" | |
21 | |
22 rm -f *.vim | |
23 _get "https://raw.githubusercontent.com/tpope/vim-pathogen/master/autoload/pathogen.vim" | |
24 ) | |
25 | |
508
bbcffc594d1e
Vendor what should be vendored and add some more.
edogawaconan <me@myconan.net>
parents:
diff
changeset
|
26 |
572 | 27 ( |
28 cd "$(dirname "$0")/vendor/vim-syntax" | |
29 | |
30 rm -f *.vim | |
623 | 31 _get https://hg.nginx.org/nginx/raw-file/tip/contrib/vim/syntax/nginx.vim |
632
c950f0ef2268
Apparently better use githubusercontent?
nanaya <me@nanaya.pro>
parents:
631
diff
changeset
|
32 _get https://raw.githubusercontent.com/jwalton512/vim-blade/master/syntax/blade.vim |
c950f0ef2268
Apparently better use githubusercontent?
nanaya <me@nanaya.pro>
parents:
631
diff
changeset
|
33 _get https://raw.githubusercontent.com/kchmck/vim-coffee-script/master/syntax/coffee.vim |
647 | 34 _get https://raw.githubusercontent.com/leafgarland/typescript-vim/master/syntax/typescript.vim |
632
c950f0ef2268
Apparently better use githubusercontent?
nanaya <me@nanaya.pro>
parents:
631
diff
changeset
|
35 _get https://raw.githubusercontent.com/slim-template/vim-slim/master/syntax/slim.vim |
634
ced2ee9efd9f
Update various syntaxes to the ones in vim repo
nanaya <me@nanaya.pro>
parents:
632
diff
changeset
|
36 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/css.vim |
632
c950f0ef2268
Apparently better use githubusercontent?
nanaya <me@nanaya.pro>
parents:
631
diff
changeset
|
37 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/eruby.vim |
634
ced2ee9efd9f
Update various syntaxes to the ones in vim repo
nanaya <me@nanaya.pro>
parents:
632
diff
changeset
|
38 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/javascript.vim |
632
c950f0ef2268
Apparently better use githubusercontent?
nanaya <me@nanaya.pro>
parents:
631
diff
changeset
|
39 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/json.vim |
c950f0ef2268
Apparently better use githubusercontent?
nanaya <me@nanaya.pro>
parents:
631
diff
changeset
|
40 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/less.vim |
c950f0ef2268
Apparently better use githubusercontent?
nanaya <me@nanaya.pro>
parents:
631
diff
changeset
|
41 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/ruby.vim |
c950f0ef2268
Apparently better use githubusercontent?
nanaya <me@nanaya.pro>
parents:
631
diff
changeset
|
42 _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/scss.vim |
647 | 43 |
44 # kinda shit (2020-09-16) | |
45 # _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/typescript.vim | |
46 # _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/typescriptcommon.vim | |
47 # _get https://raw.githubusercontent.com/vim/vim/master/runtime/syntax/typescriptreact.vim | |
572 | 48 ) |