Re: [PATCH] buildman: Support upstream branch name containing /

2023-10-30 Thread Tom Rini
On Mon, Oct 30, 2023 at 10:22:30AM -0700, Simon Glass wrote: > Buildman assumes that branch names do not have a slash in them, since > slash is used to delimit remotes, etc. This means that a branch called > 'WIP/tryme' in remote dm ends up being 'tryme'. > > Adjust the logic a little, to try to

[PATCH] buildman: Support upstream branch name containing /

2023-10-30 Thread Simon Glass
Buildman assumes that branch names do not have a slash in them, since slash is used to delimit remotes, etc. This means that a branch called 'WIP/tryme' in remote dm ends up being 'tryme'. Adjust the logic a little, to try to accommodate this. For now, no tests are added for this behaviour. Sign