Title: [147304] trunk/Tools
Revision
147304
Author
aba...@webkit.org
Date
2013-03-31 23:29:22 -0700 (Sun, 31 Mar 2013)

Log Message

configure-svn-config.sh fails
https://codereview.chromium.org/13392007/

Reviewed by Eric Seidel.

This script was trying to use "svn checkout" to dowload a file from
svn.webkit.org, but "svn checkout" only works with directories.
Instead, we should use "svn export".

* EWSTools/configure-svn-config.sh:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (147303 => 147304)


--- trunk/Tools/ChangeLog	2013-04-01 05:54:13 UTC (rev 147303)
+++ trunk/Tools/ChangeLog	2013-04-01 06:29:22 UTC (rev 147304)
@@ -1,3 +1,16 @@
+2013-03-31  Adam Barth  <aba...@webkit.org>
+
+        configure-svn-config.sh fails
+        https://codereview.chromium.org/13392007/
+
+        Reviewed by Eric Seidel.
+
+        This script was trying to use "svn checkout" to dowload a file from
+        svn.webkit.org, but "svn checkout" only works with directories.
+        Instead, we should use "svn export".
+
+        * EWSTools/configure-svn-config.sh:
+
 2013-03-31  Wei Jia  <w...@chromium.org>
 
         Allow WebUserMediaClientMock to be used by client

Modified: trunk/Tools/EWSTools/configure-svn-config.sh (147303 => 147304)


--- trunk/Tools/EWSTools/configure-svn-config.sh	2013-04-01 05:54:13 UTC (rev 147303)
+++ trunk/Tools/EWSTools/configure-svn-config.sh	2013-04-01 06:29:22 UTC (rev 147304)
@@ -24,4 +24,4 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-svn checkout http://svn.webkit.org/repository/webkit/trunk/Tools/svn-config ~/.subversion/config
+svn export http://svn.webkit.org/repository/webkit/trunk/Tools/svn-config ~/.subversion/config
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to