Merge branch 'CNT-3965/dont-fail-chmod-hook' into 'main'

Skip paths with errors in chmod hook

See merge request nvidia/container-toolkit/container-toolkit!303
This commit is contained in:
Evan Lezar 2023-02-22 15:20:26 +00:00 committed by Evan Lezar
parent d5ab1c0ba0
commit 7df553ad09

View File

@ -18,6 +18,7 @@ package chmod
import (
"fmt"
"os"
"path/filepath"
"strings"
"syscall"
@ -133,7 +134,12 @@ func (m command) run(c *cli.Context, cfg *config) error {
func (m command) getPaths(root string, paths []string) []string {
var pathsInRoot []string
for _, f := range paths {
pathsInRoot = append(pathsInRoot, filepath.Join(root, f))
path := filepath.Join(root, f)
if _, err := os.Stat(path); err != nil {
m.logger.Debugf("Skipping path %q: %v", path, err)
continue
}
pathsInRoot = append(pathsInRoot, path)
}
return pathsInRoot