config_unsupported.go 172 B

12345678
  1. //go:build !linux && !freebsd
  2. package config
  3. // optionExecRoot is a no-op on non-unix platforms.
  4. func optionExecRoot(execRoot string) Option {
  5. return func(*Config) {}
  6. }