Changeset 3210 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/zip/class-builder.php
- Timestamp:
- 05/23/2016 02:28:18 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/zip/class-builder.php
r3189 r3210 91 91 $build_dir = "{$this->tmp_build_dir}/{$this->slug}/"; 92 92 93 $res = SVN::export( $svn_url, $build_dir, array( 'ignore-externals' ) ); 93 $svn_params = array(); 94 // BudyPress is a special sister project, they have svn:externals. 95 if ( 'buddypress' != $this->slug ) { 96 $svn_params[] = 'ignore-externals'; 97 } 98 99 $res = SVN::export( $svn_url, $build_dir, $svn_params ); 94 100 if ( ! $res['result'] ) { 95 101 throw new Exception( __METHOD__ . ': ' . $res['errors'][0]['error_message'], 404 );
Note: See TracChangeset
for help on using the changeset viewer.