File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments