Skip to content

Commit

Permalink
Update dev-tool with new migration script location (#26664)
Browse files Browse the repository at this point in the history
We changed the location of the onboarding script and I failed to [update the
PR.](#26532). This commit references the proper new script location.
  • Loading branch information
scbedd authored Jul 31, 2023
1 parent ca9e858 commit f365463
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions common/tools/dev-tool/src/util/testProxyUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export async function runMigrationScript(
): Promise<void> {
const migrationScriptLocation = path.join(
await resolveRoot(),
"eng/common/testproxy/transition-scripts/generate-assets-json.ps1"
"eng/common/testproxy/onboarding/generate-assets-json.ps1"
);

const argv = [migrationScriptLocation, "-TestProxyExe", await getTestProxyExecutable()];
Expand Down Expand Up @@ -219,8 +219,7 @@ export async function isProxyToolActive(): Promise<boolean> {
await axios.get(`http://localhost:${process.env.TEST_PROXY_HTTP_PORT ?? 5000}/info/available`);

log.info(
`Proxy tool seems to be active at http://localhost:${
process.env.TEST_PROXY_HTTP_PORT ?? 5000
`Proxy tool seems to be active at http://localhost:${process.env.TEST_PROXY_HTTP_PORT ?? 5000
}\n`
);
return true;
Expand Down

0 comments on commit f365463

Please sign in to comment.