MrDraw/build_patches.sh
daid 435ec1c995 Added start/end.gcode
Added more possible pypy locations (+support for linux/mac)
2011-12-14 15:10:35 +01:00

8 lines
146 B
Bash
Executable file

#!/bin/sh
for NR in `ls patches`; do
if [ -d target/SF${NR} ]; then
diff -r -x*.pyc -N -u ori/${NR}/ target/SF${NR} > patches/${NR}
fi
done