I noticed this some time ago and fixed it, but hadn't time to submit a patch.
The problem is, that the .svn dir is copied into the template/wizard/wizardtype subdirs.
The fix is simple: just add \.svn\ to excludes.txt in update.bat
Index: update.bat
===================================================================
--- update.bat (revision 4338)
+++ update.bat (working copy)
@@ -77,6 +77,7 @@
copy /y plugins\codecompletion\resources\images\*.png %RESDIR%\images\codecompletion > nul
copy /y plugins\codecompletion\resources\images\*.png output\share\codeblocks\images\codecompletion > nul
echo Makefile.am > excludes.txt
+echo \.svn\ >> excludes.txt
xcopy /y /s plugins\scriptedwizard\resources\* %RESDIR%\templates\wizard /EXCLUDE:excludes.txt >nul
xcopy /y /s plugins\scriptedwizard\resources\* output\share\codeblocks\templates\wizard /EXCLUDE:excludes.txt >nul
xcopy /y templates\common\* output\share\codeblocks\templates /EXCLUDE:excludes.txt > nul
Best Regards
raph
On Linux you may use the following command to stop .svn entries being copied.
cp {Src_dir}/[!.]* {Dest_dir}
I haven't tested it. But it should work. :)