From 18039140db1a9bf68d04c0f8cf9d0702bd9f7f20 Mon Sep 17 00:00:00 2001 From: garronej Date: Thu, 20 Apr 2023 04:17:12 +0200 Subject: [PATCH] Important fix, assets common where broken --- src/bin/mockTestingResourcesPath.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/mockTestingResourcesPath.ts b/src/bin/mockTestingResourcesPath.ts index a90b34e2..1540221e 100644 --- a/src/bin/mockTestingResourcesPath.ts +++ b/src/bin/mockTestingResourcesPath.ts @@ -2,4 +2,4 @@ import { pathJoin } from "./tools/pathJoin"; export const basenameOfKeycloakDirInPublicDir = "keycloak-resources"; export const resourcesDirPathRelativeToPublicDir = pathJoin(basenameOfKeycloakDirInPublicDir, "resources"); -export const resourcesCommonDirPathRelativeToPublicDir = pathJoin(basenameOfKeycloakDirInPublicDir, "resources_common"); +export const resourcesCommonDirPathRelativeToPublicDir = pathJoin(resourcesDirPathRelativeToPublicDir, "resources_common");