Changeset 167307 in webkit


Ignore:
Timestamp:
Apr 15, 2014 9:16:28 AM (10 years ago)
Author:
timothy@apple.com
Message:

Web Inspector: CodeMirror LICENSE is not properly added to combined files
https://bugs.webkit.org/show_bug.cgi?id=131674

Reviewed by Darin Adler.

  • Scripts/copy-user-interface-resources.pl: Use $CODE_MIRROR_LICENSE instead

for CodeMirror.css and CodeMirror.js.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r167294 r167307  
     12014-04-15  Timothy Hatcher  <timothy@apple.com>
     2
     3        Web Inspector: CodeMirror LICENSE is not properly added to combined files
     4        https://bugs.webkit.org/show_bug.cgi?id=131674
     5
     6        Reviewed by Darin Adler.
     7
     8        * Scripts/copy-user-interface-resources.pl: Use $CODE_MIRROR_LICENSE instead
     9        for CodeMirror.css and CodeMirror.js.
     10
    1112014-04-14  Jono Wells  <jonowells@apple.com>
    212
  • trunk/Source/WebInspectorUI/Scripts/copy-user-interface-resources.pl

    r166962 r167307  
    134134    # Export the license into CodeMirror.js and CodeMirror.css.
    135135    my $targetCodeMirrorJS = File::Spec->catfile($targetResourcePath, 'CodeMirror.js');
    136     seedFile($targetCodeMirrorJS, $LICENSE);
     136    seedFile($targetCodeMirrorJS, $CODE_MIRROR_LICENSE);
    137137
    138138    my $targetCodeMirrorCSS = File::Spec->catfile($targetResourcePath, 'CodeMirror.css');
    139     seedFile($targetCodeMirrorCSS, $LICENSE);
     139    seedFile($targetCodeMirrorCSS, $CODE_MIRROR_LICENSE);
    140140
    141141    # Minify the Main.js and Main.css files, with Main.js appending to the license that was exported above.
Note: See TracChangeset for help on using the changeset viewer.