Skip to content

Commit

Permalink
Fix: vsix file path passed with quotation marks
Browse files Browse the repository at this point in the history
  • Loading branch information
loop8ack committed Apr 24, 2024
1 parent 62783f0 commit ebaecb8
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ public async Task StartInstallerAsync(IEnumerable<string> vsixFiles, bool system
{
var rootSuffix = await VS.Shell.TryGetCommandLineArgumentAsync("rootsuffix").ConfigureAwait(false);

vsixFiles = vsixFiles.Select(x => $"{x}");

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

if (systemWide)
Expand Down

0 comments on commit ebaecb8

Please sign in to comment.