build: drop shx dependency (#47293)

This commit is contained in:
David Sanders
2025-05-30 01:59:11 -07:00
committed by GitHub
parent 83524adf17
commit b303413a04
3 changed files with 9 additions and 49 deletions

6
script/cp.mjs Normal file
View 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);