Closed hut8 closed 2 years ago
During building, bower fetches from git. Some old versions apparently load from git://github.com/... which no longer exists, which causes our unit tests to fail. Git actually has a workaround for this: https://git-scm.com/docs/git-config#Documentation/git-config.txt-urlltbasegtinsteadOf
bower
git
git://github.com/...
git config --global url."https://".insteadOf 'git://'
This should be run on production as well as run on CI (which I'm working on now)
In #485 it looks like new Bower does this. I did it on production manually. And it's done in CI. So, done done done.
During building,
bower
fetches fromgit
. Some old versions apparently load fromgit://github.com/...
which no longer exists, which causes our unit tests to fail. Git actually has a workaround for this: https://git-scm.com/docs/git-config#Documentation/git-config.txt-urlltbasegtinsteadOfThis should be run on production as well as run on CI (which I'm working on now)