Skip to content

Commit

Permalink
Update autoconf address
Browse files Browse the repository at this point in the history
  • Loading branch information
fewensa committed Sep 5, 2024
1 parent 2c9cc46 commit 453be07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/runner/src/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ if (arg.option('verbose')) {
}

async function _profile(profile) {
const resp = await fetch(`https://raw.githubusercontent.com/msgport/autoconf/main/ormpipe/runner-${profile}.yml`);
const resp = await fetch(`https://raw.githubusercontent.com/ringecosystem/autoconf/main/ormpipe/runner-${profile}.yml`);
if (resp.status !== 200) {
console.log(chalk.yellow(`can not read profile ${profile}, please add --profile and there is allow profiles https://github.com/msgport/autoconf/tree/main/ormpipe`));
console.log(chalk.yellow(`can not read profile ${profile}, please add --profile and there is allow profiles https://github.com/ringecosystem/autoconf/tree/main/ormpipe`));
return null;
}
const body = await resp.text();
Expand Down Expand Up @@ -104,7 +104,7 @@ async function _start(lifecycle) {

async function _clean(lifecycle) {
console.log('===== clean');
const resp = await fetch(`https://raw.githubusercontent.com/msgport/autoconf/main/ormpipe/clean.yml`);
const resp = await fetch(`https://raw.githubusercontent.com/ringecosystem/autoconf/main/ormpipe/clean.yml`);
if (resp.status !== 200) {
return;
}
Expand Down

0 comments on commit 453be07

Please sign in to comment.