Changeset 9014
- Timestamp:
- 07/02/2019 04:48:52 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/zip/class-builder.php
r8483 r9014 14 14 const TMP_DIR = '/tmp/plugin-zip-builder'; 15 15 const SVN_URL = 'https://plugins.svn.wordpress.org'; 16 const ZIP_SVN_URL = PLUGIN_ZIP_SVN_URL;17 16 18 17 protected $zip_file = ''; … … 59 58 // Create a checkout of the ZIP SVN 60 59 $res_checkout = SVN::checkout( 61 self::ZIP_SVN_URL,60 PLUGIN_ZIP_SVN_URL, 62 61 $this->tmp_dir, 63 62 array( … … 87 86 } 88 87 } else { 89 throw new Exception( __METHOD__ . ': Failed to create checkout of ' . self::ZIP_SVN_URL . '.' );88 throw new Exception( __METHOD__ . ': Failed to create checkout of ' . PLUGIN_ZIP_SVN_URL . '.' ); 90 89 } 91 90
Note: See TracChangeset
for help on using the changeset viewer.