feat: Adds abra app move
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
2025-08-18 14:28:27 +02:00
parent 3fae036db2
commit 9849d47b64
10 changed files with 327 additions and 23 deletions

View File

@ -66,10 +66,10 @@ func RunBackupCmdRemote(
return nil, err
}
out, err := container.RunExec(dcli, cl, containerID, &execBackupListOpts)
_, err = container.RunExec(dcli, cl, containerID, &execBackupListOpts, true)
if err != nil {
return nil, err
}
return out, nil
return nil, nil
}