Skip to content

Commit 53eb34b

Browse files
authored
Move mini-lz4.js to third_party. NFC. (#12981)
See #12980
1 parent 2843eaa commit 53eb34b

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/library_lz4.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ mergeInto(LibraryManager.library, {
1515
init: function() {
1616
if (LZ4.codec) return;
1717
LZ4.codec = (function() {
18-
{{{ read('mini-lz4.js') }}};
18+
{{{ read('../third_party/mini-lz4.js') }}};
1919
return MiniLZ4;
2020
})();
2121
LZ4.CHUNK_SIZE = LZ4.codec.CHUNK_SIZE;
File renamed without changes.

tools/file_packager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ def was_seen(name):
508508
temp = data_target + '.orig'
509509
shutil.move(data_target, temp)
510510
meta = shared.run_js_tool(shared.path_from_root('tools', 'lz4-compress.js'),
511-
[shared.path_from_root('src', 'mini-lz4.js'),
511+
[shared.path_from_root('third_party', 'mini-lz4.js'),
512512
temp, data_target], stdout=PIPE)
513513
os.unlink(temp)
514514
use_data = '''

0 commit comments

Comments
 (0)