Fix documentation to make yarn test work out of the box (mk II) (#7075)

* Fix documentation to make `yarn test` work out of the box

Before, invoking `yarn test` croaked on a missing src/component-index.js
file. In another part of the README, the missing instruction to generate
this file was found.

* Fix CI: Unauthenticated git protocol on port 9418 is no longer supported

GitHub is deprecating the service which answered unauthenticated git
protocol requests. Either it happened already, or they are running
brownouts.

* This is where I meant to leave that comment

Co-authored-by: Andreas Motl <andreas.motl@panodata.org>
This commit is contained in:
Travis Ralston 2021-11-02 14:22:24 -06:00 committed by GitHub
parent 1ef8a2c486
commit c9619bfe48
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -158,6 +158,9 @@ cd matrix-react-sdk
git checkout develop git checkout develop
yarn link matrix-js-sdk yarn link matrix-js-sdk
yarn install yarn install
# Generate the `component-index.js` file.
yarn reskindex
``` ```
See the [help for `yarn link`](https://classic.yarnpkg.com/docs/cli/link) for See the [help for `yarn link`](https://classic.yarnpkg.com/docs/cli/link) for

View file

@ -18,7 +18,8 @@ clone() {
if [ -n "$branch" ] if [ -n "$branch" ]
then then
echo "Trying to use $org/$repo#$branch" echo "Trying to use $org/$repo#$branch"
git clone git://github.com/$org/$repo.git $repo --branch "$branch" --depth 1 && exit 0 # Disable auth prompts: https://serverfault.com/a/665959
GIT_TERMINAL_PROMPT=0 git clone https://github.com/$org/$repo.git $repo --branch "$branch" --depth 1 && exit 0
fi fi
} }