mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-07 17:36:22 +00:00
* Clean up adapter code * Add GetContainersByContext to Varlink API * Add missing comments * Restore save command * Restore error type mapping when using varlink Signed-off-by: Jhon Honce <jhonce@redhat.com>
26 lines
425 B
Go
26 lines
425 B
Go
// +build !remoteclient
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"os/exec"
|
|
"syscall"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func outputError(err error) {
|
|
if MainGlobalOpts.LogLevel == "debug" {
|
|
logrus.Errorf(err.Error())
|
|
} else {
|
|
ee, ok := err.(*exec.ExitError)
|
|
if ok {
|
|
if status, ok := ee.Sys().(syscall.WaitStatus); ok {
|
|
exitCode = status.ExitStatus()
|
|
}
|
|
}
|
|
fmt.Fprintln(os.Stderr, "Error:", err.Error())
|
|
}
|
|
}
|