diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-13 14:06:28 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-13 14:06:28 +0200 |
commit | 7d52f93cadf49b470240d36055500db10893b659 (patch) | |
tree | ff5e988f58c77628b93deaa18ec6d768b97900bb /build.sh | |
parent | 22c93fbe3b5ac48a366d389ecd4f12b76fbd6159 (diff) | |
download | vim-polyglot-7d52f93cadf49b470240d36055500db10893b659.tar.gz vim-polyglot-7d52f93cadf49b470240d36055500db10893b659.zip |
Add the README
Diffstat (limited to '')
-rwxr-xr-x | build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21,10 +21,10 @@ copy_dir() { # Fetches syntax files from given Github repo syntax() { dir="tmp/$(echo "$1" | cut -d '/' -f 2)" - echo "$1..." + echo "- [$1](https://github.com/$1)" rm -rf "$dir" git clone -q --recursive "https://github.com/$1.git" "$dir" - which tree > /dev/null && tree tmp + # which tree > /dev/null && tree tmp for subdir in $DIRS; do copy_dir "$dir" "$subdir" |