1
0

fix: correct output path

This commit is contained in:
2024-02-21 12:38:29 +00:00
parent fcd559124d
commit 30e0e5f554
3 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ func (cmd ContainerSaveCmd) Run(containerCmd *ContainerCmd) (err error) {
nlog := log.With().Str("name", name).Logger()
output := filepath.Join(cmd.OutDir, name+".tar")
nlog.Info().Msgf("saving to %v")
nlog.Info().Msgf("saving to %v", output)
err = container.Save(name, output)
if err != nil {