Sven
From that perspective this master to main change will cost us a lot of problem. I decided to continue to configure all my repositories to use master and I will do it for any repository that is related to pharo and that people may use. Just to remove such kind of friction. I would encourage people to do the same like that we do not have to think.
S
On 12 Jul 2021, at 14:32, Sven Van Caekenberghe <sven@stfx.eu> wrote:
Hi,
For new GitHub projects the default branch is now main instead of master.
There is however code in Metacello / Iceberg / ... that tries a number of options if no branch is specified, but it is not yet aware of this change.
Specifically:
This does not work
./pharo reddit.image metacello install github://svenvc/Reddit BaselineOfReddit
instead you have to say
./pharo reddit.image metacello install github://svenvc/Reddit:main/ BaselineOfReddit
It took me half an hour to figure this out ;-)
Sven