From f627aa16f0a4cdaf821295bc4b3eee8e0005123b Mon Sep 17 00:00:00 2001 From: claudiazhaoya Date: Mon, 26 Aug 2019 10:59:34 -0700 Subject: [PATCH] fix tslint warning --- apps/rush-lib/src/cli/actions/ChangeAction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/rush-lib/src/cli/actions/ChangeAction.ts b/apps/rush-lib/src/cli/actions/ChangeAction.ts index 5bc3ad5a73a..3b44acc9c1e 100644 --- a/apps/rush-lib/src/cli/actions/ChangeAction.ts +++ b/apps/rush-lib/src/cli/actions/ChangeAction.ts @@ -218,7 +218,7 @@ export class ChangeAction extends BaseRushAction { private _findRushPathDiff(changedFolders: Array, project: RushConfigurationProject): string { const normalizedFolder: string = project.projectRelativeFolder; - let rushPathDiff: string = ''; + const rushPathDiff: string = ''; for (const folder of changedFolders) { if (folder !== undefined) { const splitted: Array = folder.split(path.sep);