Changeset 147304 in webkit


Ignore:
Timestamp:
Mar 31, 2013, 11:29:22 PM (12 years ago)
Author:
abarth@webkit.org
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:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r147289 r147304  
     12013-03-31  Adam Barth  <abarth@webkit.org>
     2
     3        configure-svn-config.sh fails
     4        https://codereview.chromium.org/13392007/
     5
     6        Reviewed by Eric Seidel.
     7
     8        This script was trying to use "svn checkout" to dowload a file from
     9        svn.webkit.org, but "svn checkout" only works with directories.
     10        Instead, we should use "svn export".
     11
     12        * EWSTools/configure-svn-config.sh:
     13
    1142013-03-31  Wei Jia  <wjia@chromium.org>
    215
  • trunk/Tools/EWSTools/configure-svn-config.sh

    r144716 r147304  
    2525# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2626
    27 svn checkout http://svn.webkit.org/repository/webkit/trunk/Tools/svn-config ~/.subversion/config
     27svn export http://svn.webkit.org/repository/webkit/trunk/Tools/svn-config ~/.subversion/config
Note: See TracChangeset for help on using the changeset viewer.