build: drop shx dependency (#47293)

This commit is contained in:
David Sanders 2025-05-30 01:59:11 -07:00 committed by GitHub
commit b303413a04
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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);