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 a73cf78 commit 34f5919Copy full SHA for 34f5919
src/ExtensionManager/Features/Install/InstallFeatureBase.cs
@@ -1,5 +1,6 @@
1
using System;
2
using System.Collections.Generic;
3
+using System.IO;
4
using System.Threading;
5
using System.Threading.Tasks;
6
@@ -52,6 +53,9 @@ public async Task ExecuteAsync()
52
53
if (filePath is null or { Length: 0 })
54
return;
55
56
+ if (!File.Exists(filePath))
57
+ return;
58
+
59
var installedExtensions = await Extensions.GetInstalledExtensionsAsync().ConfigureAwait(false);
60
var manifest = await ManifestService.ReadAsync(filePath).ConfigureAwait(false);
61
0 commit comments