Change strategy to appending instead of copying

This commit is contained in:
Adam Stankiewicz 2013-12-26 04:05:26 +01:00
parent a26bebbeb9
commit ca95a47a93
2 changed files with 2 additions and 1 deletions

3
build
View File

@ -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
}

0
syntax/coffee.vim Executable file → Normal file
View File