github.com/uriddle/docker@v0.0.0-20210926094723-4072e6aeb013/volume/store/store_unix.go (about)

     1  // +build linux freebsd
     2  
     3  package store
     4  
     5  // normaliseVolumeName is a platform specific function to normalise the name
     6  // of a volume. This is a no-op on Unix-like platforms
     7  func normaliseVolumeName(name string) string {
     8  	return name
     9  }