Skip to content

Commit 8b4d50a

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ 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}");
52+
vsixFiles = vsixFiles.Select(x => $"\"{x}\"");
5353

5454
var arguments = $"{string.Join(" ", vsixFiles)} /instanceIds:{GetInstallationId()}";
5555

0 commit comments

Comments
 (0)