blob: 2915389e195fa133a353c2e286688dcd21941e95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/**
* @license
* Copyright 2023 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import fs from 'fs';
/**
* Copies single file in argv[2] to argv[3]
*/
fs.cpSync(process.argv[2], process.argv[3]);
|