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

@ -103,7 +103,7 @@ func Save(name, path string) (err error) {
return
}
cmd := exec.Command(Runtime, "save", name, path)
cmd := exec.Command(Runtime, "save", name, "-o", path)
log.Debug().Msgf("%v", cmd)
raw, err := cmd.CombinedOutput()