From c328f453332bf272c3d7fc960bd8e2e5263c6810 Mon Sep 17 00:00:00 2001 From: Srigovind Nayak <5201843+konidev20@users.noreply.github.com> Date: Sat, 8 Feb 2025 19:16:10 +0530 Subject: [PATCH] mount: append the short string of the repository ID --- cmd/restic/cmd_mount.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/restic/cmd_mount.go b/cmd/restic/cmd_mount.go index 8ab951317..af18536e6 100644 --- a/cmd/restic/cmd_mount.go +++ b/cmd/restic/cmd_mount.go @@ -147,7 +147,7 @@ func runMount(ctx context.Context, opts MountOptions, gopts GlobalOptions, args return err } - fuseMountName := fmt.Sprintf("restic:%s", repositoryID) + fuseMountName := fmt.Sprintf("restic:%s", repositoryID.Str()) mountOptions := []systemFuse.MountOption{ systemFuse.ReadOnly(),