Files
kustomize/kyaml/filesys/fsondisk_unix.go
2026-02-13 20:55:17 +09:00

15 lines
226 B
Go

// Copyright 2022 The Kubernetes Authors.
// SPDX-License-Identifier: Apache-2.0
//go:build !windows
package filesys
import (
"path/filepath"
)
func getOSRoot() (string, error) {
return string(filepath.Separator), nil
}