ForgePatch/forge/update_patches.sh
LexManos 141805d5bb Fixed a bug in forge_client project that had a hard link to E:/MCP/jars/bin/paul.jar now points to MCP/jars/bin/minecraft.jar {has the same paulsound libraries}
Major refactoring of the patches, now each modified file gets its own patch file.
Rewrote all the scripts to use new multi-patch system.
Added linux install.sh using new system.
Added some required libraries from GNUWin32 for the windows side of the new setup.bat/update_patches.bat http://gnuwin32.sourceforge.net/
2011-10-09 04:21:29 +00:00

26 lines
533 B
Bash

rm -rf patches
echo Creating directories
for i in `find ../src_work -type d`
do
mkdir --parents "./patches${i:11}"
done
echo Creating patches
for i in `find ../src_work -type f`
do
diff -u ../src_base${i:11} $i -r --strip-trailing-cr --new-file | sed -e "1,2s/[0-9-]* [0-9:\.]* [+-][0-9]*\b/0000-00-00 00:00:00.000000000 -00/" | tr -d '\r' > ./patches${i:11}.patch
done
echo Removing empty patches
for i in `find patches -size 0 -type f`
do
rm $i
done
for i in `find patches -depth -empty -type d`
do
rmdir "$i"
done