Skip to content

Commit 58d071c

Browse files
authored
Merge pull request #6124 from microsoft/master
Merge for 1.0.0 (2nd time)
2 parents ec0f671 + 9650bb7 commit 58d071c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Extension/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2301,7 +2301,7 @@
23012301
"./bin/cpptools",
23022302
"./bin/cpptools-srv"
23032303
],
2304-
"integrity": "292D438B2573D17D18E30C4723702118BBCCB0049388C1B76879E9A15FE784FD"
2304+
"integrity": "1C38F099F1A0B7998AA3C96715D1E3122AF3B14E15F6F0DABFBC7EC189D6A9C3"
23052305
},
23062306
{
23072307
"description": "C/C++ language components (Linux / armhf)",
@@ -2316,7 +2316,7 @@
23162316
"./bin/cpptools",
23172317
"./bin/cpptools-srv"
23182318
],
2319-
"integrity": "61C2656ABD3856A657D6103D169838528F9454D39E7DA36A92B272AC2A052067"
2319+
"integrity": "3888B34E283BD466B1BD967A4AEE3FFA7AF7DF800598B99DEAB524134A8F8DD3"
23202320
},
23212321
{
23222322
"description": "C/C++ language components (Linux / aarch64)",
@@ -2331,7 +2331,7 @@
23312331
"./bin/cpptools",
23322332
"./bin/cpptools-srv"
23332333
],
2334-
"integrity": "61C2656ABD3856A657D6103D169838528F9454D39E7DA36A92B272AC2A052067"
2334+
"integrity": "E42742E4E9963BF945C61AA60ED62D4A953174CDD1865E1496F8588A53A7C3DF"
23352335
},
23362336
{
23372337
"description": "C/C++ language components (OS X)",
@@ -2343,7 +2343,7 @@
23432343
"./bin/cpptools",
23442344
"./bin/cpptools-srv"
23452345
],
2346-
"integrity": "3CAAFD3A5375F4F3EA2D7EA4B432C1917FDC3B548CA81C5D032041A07821B121"
2346+
"integrity": "2213A48C1C53763B4EA548D702171C8C0DDB33C684433F2707F23B9A4AEA6F72"
23472347
},
23482348
{
23492349
"description": "C/C++ language components (Windows)",
@@ -2355,7 +2355,7 @@
23552355
"./bin/cpptools.exe",
23562356
"./bin/cpptools-srv.exe"
23572357
],
2358-
"integrity": "F98CB4D80013A119EB0043BA1A85E1E5966E6F160264A28E19D9D57ABD7FD015"
2358+
"integrity": "1C86575AD572B8EE1787F168BD7002B77091CA0079DEE054EB4E015B3CBBDC56"
23592359
},
23602360
{
23612361
"description": "ClangFormat (Linux / x86_64)",
@@ -2397,7 +2397,7 @@
23972397
"binaries": [
23982398
"./LLVM/bin/clang-format"
23992399
],
2400-
"integrity": "F06D3741192FFD7BB96BF9327D9DE1BBF6A9DB9753DA971C727D20D38835C1A9"
2400+
"integrity": "8CE17FA29582759418588CD1B63C91691C944CCED95E45593D4EA31834E20913"
24012401
},
24022402
{
24032403
"description": "ClangFormat (OS X)",

Extension/src/packageManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export class PackageManager {
220220
} catch (error) {
221221
retryCount += 1;
222222
lastError = error;
223-
if (retryCount > MAX_RETRIES) {
223+
if (retryCount >= MAX_RETRIES) {
224224
this.AppendChannel(" " + localize("failed.download.url", "Failed to download {0}", pkg.url));
225225
throw error;
226226
} else {

0 commit comments

Comments
 (0)