build: drop shx dependency (#47293)
This commit is contained in:
parent
83524adf17
commit
b303413a04
3 changed files with 9 additions and 49 deletions
6
script/cp.mjs
Normal file
6
script/cp.mjs
Normal file
|
@ -0,0 +1,6 @@
|
|||
import * as fs from 'node:fs/promises';
|
||||
|
||||
const source = process.argv[2];
|
||||
const destination = process.argv[3];
|
||||
|
||||
await fs.cp(source, destination);
|
Loading…
Add table
Add a link
Reference in a new issue