electron/script/cp.mjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
145 B
JavaScript
Raw Normal View History

2025-05-30 01:59:11 -07:00
import * as fs from 'node:fs/promises';
const source = process.argv[2];
const destination = process.argv[3];
await fs.cp(source, destination);