Bug 15005 - Nightly .zip for Windows contains .svn folders
Summary: Nightly .zip for Windows contains .svn folders
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKit Website (show other bugs)
Version: 523.x (Safari 3)
Hardware: PC Windows XP
: P5 Trivial
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-08-19 07:27 PDT by 808caaa4.8ce9.9cd6c799e9f6
Modified: 2008-02-14 05:29 PST (History)
3 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description 808caaa4.8ce9.9cd6c799e9f6 2007-08-19 07:27:32 PDT
In WebInspector resource folders (for Windows) have .svn folders now.
Harmless for evaluation, of cource.
Comment 1 David Kilzer (:ddkilzer) 2007-08-19 08:58:00 PDT
Confirmed with WebKit-SVN-r25143.zip.
Comment 2 Adam Roben (:aroben) 2007-08-19 09:21:49 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\
Comment 3 Robert Blaut 2008-02-14 05:29:31 PST
I've checked today nightly zip and found no more .svn folders. So the bug is already fixed.