#!/bin/bash

DST=trunk

rm -rf $DST
mkdir -p $DST
SRC=3rdparty-original/avro-json
cp -r $SRC/* $DST/
cd $DST
patch -p1 < ../patch.diff
