From 89e6cb4fcb97813b6678493c7e07fa3f0ccd1335 Mon Sep 17 00:00:00 2001 From: Andrew Block Date: Mon, 15 Dec 2025 03:16:51 -0600 Subject: [PATCH] Fix recursive publish Signed-off-by: Andrew Block --- cmd/sops/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/sops/main.go b/cmd/sops/main.go index c2f7aec42..fca10f303 100644 --- a/cmd/sops/main.go +++ b/cmd/sops/main.go @@ -448,6 +448,7 @@ func main() { err = publishcmd.Run(publishcmd.Opts{ ConfigPath: configPath, InputPath: subPath, + RootPath: path, Cipher: aes.NewCipher(), KeyServices: keyservices(c), DecryptionOrder: order,