8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3993d2a commit 404b67aCopy full SHA for 404b67a
apps/rush-lib/src/cli/actions/InstallAction.ts
@@ -36,8 +36,9 @@ export class InstallAction extends BaseInstallAction {
36
networkConcurrency: this._networkConcurrencyParameter.value,
37
collectLogFile: this._debugPackageManagerParameter.value!,
38
variant: this._variant.value,
39
- maxInstallAttempts: this._maxInstallAttempts.value ? this._maxInstallAttempts.value :
40
- 549A RushConstants.defaultMaxInstallAttempts
+ maxInstallAttempts: this._maxInstallAttempts.value !== undefined
+ ? this._maxInstallAttempts.value
41
+ : RushConstants.defaultMaxInstallAttempts
42
};
43
}
44
0 commit comments