github.com/microsoft/moc@v0.17.1/pkg/fs/fs_linux.go (about)

     1  // Copyright (c) Microsoft Corporation.
     2  // Licensed under the Apache v2.0 license.
     3  package fs
     4  
     5  import (
     6  	"os"
     7  )
     8  
     9  func Chmod(path string, mode os.FileMode) error {
    10  	return os.Chmod(path, mode)
    11  }