mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
17 lines
312 B
TypeScript
17 lines
312 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2023 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import fs from 'fs';
|
|
|
|
/**
|
|
* Calls chmod with the mode in argv[2] on paths in argv[3...length-1].
|
|
*/
|
|
const mode = process.argv[2];
|
|
|
|
for (let i = 3; i < process.argv.length; i++) {
|
|
fs.chmodSync(process.argv[i], mode);
|
|
}
|