From ca95a47a93b404cf82362d29f991adfdf4e4c38c Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Thu, 26 Dec 2013 04:05:26 +0100 Subject: Change strategy to appending instead of copying --- build | 3 ++- syntax/coffee.vim | 0 2 files changed, 2 insertions(+), 1 deletion(-) mode change 100755 => 100644 syntax/coffee.vim diff --git a/build b/build index 7497e9db..b6a92a96 100755 --- a/build +++ b/build @@ -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 old mode 100755 new mode 100644 -- cgit v1.2.3