From 49147a4edd31ac655880dc7404d41a3c6b23779b Mon Sep 17 00:00:00 2001 From: = <=> Date: Tue, 26 Nov 2024 16:12:17 -0700 Subject: [PATCH] debugging lib paths --- fclauncher/InstanceManager.go | 1 + 1 file changed, 1 insertion(+) diff --git a/fclauncher/InstanceManager.go b/fclauncher/InstanceManager.go index 8f6f400..7a72329 100644 --- a/fclauncher/InstanceManager.go +++ b/fclauncher/InstanceManager.go @@ -336,6 +336,7 @@ func (i *InstanceManager) InstallFabric(instance string, fabricVersion string) { client: for _, lib := range metadata.LauncherMeta.Libraries.Client { tokens := strings.Split(ProcessMavenPath(lib.Name), string(os.PathSeparator)) + fmt.Printf("processing lib %s as path %s with %d tokens", lib.Name, ProcessMavenPath(lib.Name), len(tokens)) pkg := tokens[len(tokens)-2] instanceObject.Libraries = append(instanceObject.Libraries, filepath.Join(ProcessMavenPath(lib.Name), ProcessMavenFilename(lib.Name))) for ind, path := range instanceObject.Libraries {