Skip to content

Commit ebaecb8

Browse files
committed
Fix: vsix file path passed with quotation marks
1 parent 62783f0 commit ebaecb8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/ExtensionManager.VisualStudio.Shared/Extensions/VSExtensions.cs

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ public async Task StartInstallerAsync(IEnumerable<string> vsixFiles, bool system
4949
{
5050
var rootSuffix = await VS.Shell.TryGetCommandLineArgumentAsync("rootsuffix").ConfigureAwait(false);
5151

52+
vsixFiles = vsixFiles.Select(x => $"{x}");
53+
5254
var arguments = $"{string.Join(" ", vsixFiles)} /instanceIds:{GetInstallationId()}";
5355

5456
if (systemWide)

0 commit comments

Comments
 (0)