From b02da8adebdcf3186613d43b3b015632478dd917 Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Sun, 21 May 2023 20:39:52 +0000 Subject: [PATCH] fix: typo --- container/container.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/container/container.go b/container/container.go index 5cf56d0..a1cb0c3 100644 --- a/container/container.go +++ b/container/container.go @@ -99,8 +99,8 @@ func New(name string, timeout time.Duration) (c Container, err error) { c.timeout = timeout c.Volumes.LibModules = config.Dir("volumes", name, "lib", "modules") - c.Volumes.LibModules = config.Dir("volumes", name, "usr", "src") - c.Volumes.LibModules = config.Dir("volumes", name, "boot") + c.Volumes.UsrSrc = config.Dir("volumes", name, "usr", "src") + c.Volumes.Boot = config.Dir("volumes", name, "boot") return }