github.com/Thanhphan1147/cloudfoundry-cli@v7.1.0+incompatible/actor/sharedaction/fix_mode_unix.go (about)

     1  // +build !windows
     2  
     3  package sharedaction
     4  
     5  import "os"
     6  
     7  // fixMode is unnecessary on UNIX systems, see windows version for more
     8  // details.
     9  func fixMode(mode os.FileMode) os.FileMode {
    10  	return mode
    11  }