Skip to content

Commit 4134093

Browse files
Points release server to supported environment
1 parent ab17934 commit 4134093

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

src/env/node/gk/cli/integration.ts

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,14 +402,24 @@ export class GkCliIntegrationProvider implements Disposable {
402402

403403
try {
404404
// Download the MCP proxy installer
405-
const proxyUrl = this.container.urls.getGkApiUrl(
405+
// TODO: Switch to getGkApiUrl once we support other environments
406+
const proxyUrl = Uri.joinPath(
407+
Uri.parse('https://api.gitkraken.dev'),
406408
'releases',
407409
'gkcli-proxy',
408410
'production',
409411
platformName,
410412
architecture,
411413
'active',
412-
);
414+
).toString();
415+
/* const proxyUrl = this.container.urls.getGkApiUrl(
416+
'releases',
417+
'gkcli-proxy',
418+
'production',
419+
platformName,
420+
architecture,
421+
'active',
422+
); */
413423

414424
let response = await fetch(proxyUrl);
415425
if (!response.ok) {

0 commit comments

Comments
 (0)