diff options
| author | Adam Stankiewicz <sheerun@sher.pl> | 2013-12-26 04:05:26 +0100 | 
|---|---|---|
| committer | Adam Stankiewicz <sheerun@sher.pl> | 2013-12-26 04:05:26 +0100 | 
| commit | ca95a47a93b404cf82362d29f991adfdf4e4c38c (patch) | |
| tree | dd8b446ba52cc8047034fbf3c9285255c1b3d02f | |
| parent | a26bebbeb94207698d20f43485098ead64bb6c67 (diff) | |
| download | vim-polyglot-ca95a47a93b404cf82362d29f991adfdf4e4c38c.tar.gz vim-polyglot-ca95a47a93b404cf82362d29f991adfdf4e4c38c.zip | |
Change strategy to appending instead of copying
| -rwxr-xr-x | build | 3 | ||||
| -rw-r--r--[-rwxr-xr-x] | syntax/coffee.vim | 0 | 
2 files changed, 2 insertions, 1 deletions
| @@ -54,7 +54,8 @@ copy_dir() {    for file in $(find "$1/$2" -name '*.vim'); do      file_path="$(dirname "${file##$1/}")"      mkdir -p "$file_path" -    cp $file $file_path/ +    touch $file_path/$file +    cat $file >> $file_path/$(basename "$file")    done  } diff --git a/syntax/coffee.vim b/syntax/coffee.vim index 7f8df73c..7f8df73c 100755..100644 --- a/syntax/coffee.vim +++ b/syntax/coffee.vim | 
