mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00

These files should never be included on the remote client. There only there to finalize the spec on the server side. This makes sure it will not get reimported by accident and bloat the remote client again. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
15 lines
221 B
Go
15 lines
221 B
Go
//go:build !remote
|
|
// +build !remote
|
|
|
|
package generate
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/containers/common/libimage"
|
|
)
|
|
|
|
func imageRunPath(ctx context.Context, img *libimage.Image) (string, error) {
|
|
return "/run", nil
|
|
}
|