This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: get_externals.bat script fails
Type: behavior Stage: resolved
Components: Windows Versions: Python 3.6
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: Alex Budovski, paul.moore, r.david.murray, steve.dower, tim.golden, zach.ware
Priority: normal Keywords: patch

Created on 2015-07-23 17:19 by Alex Budovski, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
externalsfix.diff Alex Budovski, 2015-07-23 17:19 review
Messages (4)
msg247223 - (view) Author: Alex Budovski (Alex Budovski) Date: 2015-07-23 17:19
The svn commands need to be wrapped with "call", otherwise the batch interpreter hangs. Attached simple fix.
msg247225 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2015-07-23 17:35
This script has been working for a long time, and while it was updated recently there was no 'call' previously either.  What environment are you experiencing a hang in?
msg247226 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2015-07-23 17:41
Apparently you've installed SVN differently and you're calling svn.bat (or svn.cmd) instead of svn.exe.

Adding call there should not cause a problem for people who have svn.exe, but Alex, I suggest you try running "where svn" to make sure you are actually invoking the right thing.
msg324557 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2018-09-04 06:18
Closing as "out of date"; we no longer use svn to fetch external sources.
History
Date User Action Args
2022-04-11 14:58:19adminsetgithub: 68886
2018-09-04 06:18:10zach.waresetstatus: open -> closed
resolution: out of date
messages: + msg324557

stage: resolved
2015-07-23 17:41:34steve.dowersetmessages: + msg247226
2015-07-23 17:35:47r.david.murraysetnosy: + paul.moore, tim.golden, r.david.murray, zach.ware, steve.dower
messages: + msg247225
components: + Windows
2015-07-23 17:19:38Alex Budovskicreate