From a3ddf2d5e468e3fb38c8810cf736bdd86e73d48b Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Thu, 29 Jan 2026 17:21:20 +0100 Subject: [PATCH] fix: refactor publish command --- cmd/cmd/publishCmd.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/cmd/cmd/publishCmd.go b/cmd/cmd/publishCmd.go index 05e9106f..e47e3e29 100644 --- a/cmd/cmd/publishCmd.go +++ b/cmd/cmd/publishCmd.go @@ -293,8 +293,11 @@ func createTargetDirs(destPath string) error { if err != nil { return err } + err = createDir(path.Join(destPath, v)) + if err != nil { + return err + } } - return nil } @@ -405,7 +408,8 @@ func createArchitectureFiles(namespace, provider, distPath, repoName, version, g { "protocols": [ "4.0", - "5.1" + "5.1", + "6.0" ], "os": "%s", "arch": "%s",