[Webkit-unassigned] [Bug 15005] Nightly .zip for Windows contains .svn folders

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Aug 19 09:21:50 PDT 2007


http://bugs.webkit.org/show_bug.cgi?id=15005





------- Comment #2 from aroben at apple.com  2007-08-19 09:21 PDT -------
This is happening because one of the post-build steps in WebCore.vcproj is:

xcopy /y /d /s "$(ProjectDir)\..\page\inspector\*"
"$(WebKitOutputDir)\bin\WebKit.resources\inspector"

This command recursively copies everything beneath WebCore/page/inspector,
including the .svn folder.

One way to fix this is to use the /exclude: flag. You pass it a file with a
newline-separated list of patterns to exclude when copying. Any file matching
any of the patterns will not be copied. I believe the pattern needed to exclude
the .svn directory is this:

\.svn\


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list