mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
59939cf320
Unlike the old installer in config/module, this uses new-style installation directories that include the static module path so that paths we show in diagnostics will be more meaningful to the user. As before, we retrieve the entire "package" associated with the given source string, rather than any given subdirectory directly, because the retrieved module may contain ../ references into parent directories which must be resolvable after extraction.
9 lines
151 B
Go
9 lines
151 B
Go
// +build windows
|
|
|
|
package configload
|
|
|
|
// no syscall.Stat_t on windows, return 0 for inodes
|
|
func inode(path string) (uint64, error) {
|
|
return 0, nil
|
|
}
|