Skip to content

Commit

Permalink
Fix --remote-git-username arg (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilBroderickCrezco authored Nov 15, 2023
1 parent 35517ac commit e07da61
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .changes/unreleased/Bug Fixes-186.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
component: sdk/auto
kind: Bug Fixes
body: Fix issue with specifying a git username for remote workspaces.
time: 2023-11-15T13:48:50.270288Z
custom:
PR: "186"
2 changes: 1 addition & 1 deletion sdk/Pulumi.Automation/LocalWorkspace.cs
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ internal IReadOnlyList<string> GetRemoteArgs()
}
if (!string.IsNullOrEmpty(_remoteGitProgramArgs.Auth.Username))
{
args.Add("--remote-git-username");
args.Add("--remote-git-auth-username");
args.Add(_remoteGitProgramArgs.Auth.Username);
}
}
Expand Down

0 comments on commit e07da61

Please sign in to comment.