Site Update: WordPress 2.2.2

Another update after only 11 days. This one is again a point release, to version 2.2.2. Ah well, updates fix bugs (however minor) and are quick and painless. I just had to make sure that the custom changes I've made to the core WordPress files were added back in after the update. This is really easy using Subversion's diff function and then applying that as a patch to the updated file. Ah, the wonders of version control.

I actually came up with a nice way to list all the files that were changed by the update:

svn stat | grep -v '?' | awk '{ print $2 }' | sort

For next time I should come up with a way to just FTP these files across automatically. Shouldn't be that hard; if I find a way I'll post it here.