github.com/jaredpalmer/terraform@v1.1.0-alpha20210908.0.20210911170307-88705c943a03/internal/configs/configload/inode_windows.go (about)

     1  //go:build windows
     2  // +build windows
     3  
     4  package configload
     5  
     6  // no syscall.Stat_t on windows, return 0 for inodes
     7  func inode(path string) (uint64, error) {
     8  	return 0, nil
     9  }