Make WordPress Core

Changeset 25012


Ignore:
Timestamp:
08/07/2013 05:34:05 PM (12 years ago)
Author:
nacin
Message:

Remove temporary svn task from Gruntfile.js. props jorbin, fixes #24981.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Gruntfile.js

    r25001 r25012  
    1515                src: []
    1616            },
    17             svn: [SOURCE_DIR]
    1817        },
    1918        copy: {
     
    4544                    '!wp-admin/css/farbtastic.css'
    4645                ]
    47             }
    48         },
    49         svn: {
    50             core: {
    51                 repository: 'https://core.svn.wordpress.org/trunk/',
    52                 dest: SOURCE_DIR
    5346            }
    5447        },
     
    118111        'uglify:core', 'uglify:tinymce']);
    119112
    120 
    121     // Add a temporary setup task for preparing the directory using existing repositories.
    122     grunt.registerTask('setup', ['clean:all', 'svn']);
    123 
    124     // Add an svn task for checking out repositories.
    125     grunt.registerMultiTask('svn', 'Check out a Subversion repository.', function() {
    126         var done = this.async();
    127         var args = ['checkout', '--ignore-externals', this.data.repository];
    128         if (this.data.dest) {
    129             args.push(this.data.dest);
    130         }
    131 
    132         grunt.util.spawn({
    133             cmd: 'svn',
    134             args: args,
    135             opts: {stdio: 'inherit'}
    136         }, done);
    137     });
    138 
    139113    // Default task.
    140114    grunt.registerTask('default', ['build']);
Note: See TracChangeset for help on using the changeset viewer.