Skip to content

Commit e73b615

Browse files
Pranav-yadavfacebook-github-bot
authored andcommitted
fix lint warn -> rm unused import rm (facebook#35186)
Summary: - Fixed lint warning -> rm unused import `rm` in `scripts/run-ci-e2e-tests.js` file - Hence, removed unused import `rm` in `scripts/run-ci-e2e-tests.js` file ## Changelog <!-- Help reviewers and the release process by writing your own changelog entry. For an example, see: https://reactnative.dev/contributing/changelogs-in-pull-requests --> [GENERAL] [FIXED] - Fixed lint warning -> rm unused import `rm` in `scripts/run-ci-e2e-tests.js` file Pull Request resolved: facebook#35186 Test Plan: `yarn test-ci` ![image](https://user-images.githubusercontent.com/55224033/199700838-c8a6d2d6-0634-4e0a-b50d-5ca89957cf38.png) Reviewed By: sshic Differential Revision: D40978104 Pulled By: NickGerleman fbshipit-source-id: 5a99cd33d25015325133aee1442980b218104e86
1 parent e81c98c commit e73b615

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/run-ci-e2e-tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* --retries [num] - how many times to retry possible flaky commands: yarn add and running tests, default 1
2020
*/
2121

22-
const {cd, cp, echo, exec, exit, mv, rm} = require('shelljs');
22+
const {cd, cp, echo, exec, exit, mv} = require('shelljs');
2323
const spawn = require('child_process').spawn;
2424
const argv = require('yargs').argv;
2525
const path = require('path');

0 commit comments

Comments
 (0)