forked from ChromeDevTools/devtools-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopy-files.js
28 lines (25 loc) · 1.07 KB
/
copy-files.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
const fs = require('fs');
const path = require('path');
const [, , src, dest, files] = process.argv;
for (const file of files.split(',')) {
const srcPath = path.join(src, file);
const destPath = path.join(dest, file);
// If there's a file there from a previous build, unlink it first. This
// is because the file in that location might be a hardlinked file, and
// overwriting it doesn't change the fact that it's hardlinked.
const srcContents = fs.readFileSync(srcPath);
if (fs.existsSync(destPath)) {
// Check contents, return early if match
const destContents = fs.readFileSync(destPath);
if (srcContents.equals(destContents)) {
continue;
}
}
// Force a write to the target filesystem, since by default the ninja
// toolchain will create a hardlink, which in turn reflects changes in
// gen and resources/inspector back to //front_end.
fs.writeFileSync(destPath, srcContents);
}