Changeset 252834 in webkit


Ignore:
Timestamp:
Nov 23, 2019 12:17:47 PM (4 years ago)
Author:
pvollan@apple.com
Message:

Archive step is failing after r252827
https://bugs.webkit.org/show_bug.cgi?id=204548

Reviewed by Alexey Proskuryakov.

After https://trac.webkit.org/changeset/252827/webkit, the archive step is failing.

  • BuildSlaveSupport/built-product-archive:

(createZip):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/built-product-archive

    r233151 r252834  
    162162        return subprocess.call(command) or addFilesToArchive(archiveFile, PATH_TO_LAUNCHER, PATH_TO_README)
    163163    elif sys.platform == 'cygwin':
    164         return subprocess.call(["zip", "-r", archiveFile, "bin32"], cwd=directoryToZip)
     164        return subprocess.call(["zip", "-r", archiveFile, "bin64"], cwd=directoryToZip)
    165165    elif sys.platform == 'win32':
    166166        createZipManually(directoryToZip, archiveFile)
  • trunk/Tools/ChangeLog

    r252832 r252834  
     12019-11-23  Per Arne Vollan  <pvollan@apple.com>
     2
     3        Archive step is failing after r252827
     4        https://bugs.webkit.org/show_bug.cgi?id=204548
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        After https://trac.webkit.org/changeset/252827/webkit, the archive step is failing.
     9
     10        * BuildSlaveSupport/built-product-archive:
     11        (createZip):
     12
    1132019-11-23  Andres Gonzalez  <andresg_22@apple.com>
    214
Note: See TracChangeset for help on using the changeset viewer.