From 52765a3116abfbbcc9026eac9fb94d57db62318a Mon Sep 17 00:00:00 2001 From: Shubham Tiwari <64764738+tiwarishub@users.noreply.github.com> Date: Tue, 15 Dec 2020 18:34:13 +0530 Subject: [PATCH] URL fix (#198) * Initial changes * change variable name * change variable name * Changes env name * Review comments * review comments * Review comment * commit to run CI * test commit for testing check runs * Update remoteServiceUrlHelper.ts * Update remoteServiceUrlHelper.ts * Update remoteServiceUrlHelper.ts * revert test changes * URL bug fix Co-authored-by: Bishal Prasad --- src/configure/helper/remoteServiceUrlHelper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configure/helper/remoteServiceUrlHelper.ts b/src/configure/helper/remoteServiceUrlHelper.ts index 9acf0aec..c5135b38 100644 --- a/src/configure/helper/remoteServiceUrlHelper.ts +++ b/src/configure/helper/remoteServiceUrlHelper.ts @@ -38,7 +38,7 @@ export class RemoteServiceUrlHelper { if (deployment != undefined && deployment === "development") { return { serviceFramework: ServiceFramework.Moda, - serviceUrl: process.env["PROXY_URL"] + "/repos/" + serviceUrl: process.env["PROXY_URL"] + "repos/" } as IServiceUrlDefinition; }