diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-11-02 03:39:21 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-11-02 03:39:21 (GMT) |
commit | 4b2b1de0bdca9020a015473c5348e1a1d4bb53f9 (patch) | |
tree | 973bb0c572ba91436bf387b71f9f025d01284bf4 /Tools/buildbot | |
parent | 91f01e175a4f8f21893401573bdc36c5004388dd (diff) | |
download | cpython-4b2b1de0bdca9020a015473c5348e1a1d4bb53f9.zip cpython-4b2b1de0bdca9020a015473c5348e1a1d4bb53f9.tar.gz cpython-4b2b1de0bdca9020a015473c5348e1a1d4bb53f9.tar.bz2 |
Issue #17896: Move Windows external lib sources from .. to externals.
Diffstat (limited to 'Tools/buildbot')
-rw-r--r-- | Tools/buildbot/external-common.bat | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/buildbot/external-common.bat b/Tools/buildbot/external-common.bat index 5e4002b..215a4b9 100644 --- a/Tools/buildbot/external-common.bat +++ b/Tools/buildbot/external-common.bat @@ -1,7 +1,8 @@ @rem Common file shared between external.bat and external-amd64.bat. Responsible for @rem fetching external components into the root\.. buildbot directories. -cd .. +if not exist externals mkdir externals +cd externals @rem XXX: If you need to force the buildbots to start from a fresh environment, uncomment @rem the following, check it in, then check it out, comment it out, then check it back in. @rem if exist bzip2-1.0.6 rd /s/q bzip2-1.0.6 |