summaryrefslogtreecommitdiff
path: root/pkg/util/utils_windows.go
blob: 1e9ccea90c21bbf217e9c1eb504af48611123d06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// +build windows

package util

import (
	"github.com/pkg/errors"
)

// GetRootlessRuntimeDir returns the runtime directory when running as non root
func GetRootlessRuntimeDir() (string, error) {
	return "", errors.New("this function is not implemented for windows")
}