1
0
Fork 0

fix: typo

timestamps
dump_stack() 2023-05-21 20:39:52 +00:00
parent 31b0945a15
commit b02da8adeb
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 2 additions and 2 deletions

View File

@ -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
}