diff --git a/README.md b/README.md index 8a91c03..13b1e8f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # LionWeb integration testing -Automated tests that check that the other repos within the [LionWeb GitHub](https://github.com/LionWeb-org) integrate well and consistently with each other. +Automated tests that check that the other repos within the [LionWeb GitHub](https://github.com/LionWeb-io) integrate well and consistently with each other. Kick off all the tests by running the following command on the CLI: diff --git a/src/clone.ts b/src/clone.ts index ec3e0aa..9c57d84 100644 --- a/src/clone.ts +++ b/src/clone.ts @@ -7,7 +7,7 @@ const token = Deno.env.get("LIONWEB_PAT") const cloneRepo = (name: string, repoId: string) => { const localRepoDir = fromRoot(repoId) - const url = `https://${token === undefined ? "" : `${token}@`}github.com/LionWeb-org/${repoId}` + const url = `https://${token === undefined ? "" : `${token}@`}github.com/LionWeb-io/${repoId}` return exec(`rm -rf ${localRepoDir}`) .then(() => exec(`git clone --depth 1 ${url} ${localRepoDir}`)) // Note: Git exits silently on failure!