From bae9f6d2fd5eb5bc80929bd393932b23f14d7c93 Mon Sep 17 00:00:00 2001 From: Jake Champlin Date: Tue, 6 Jun 2017 12:40:07 -0400 Subject: Initial transfer of provider code --- .../github.com/hashicorp/terraform/config/module/inode_windows.go | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 vendor/github.com/hashicorp/terraform/config/module/inode_windows.go (limited to 'vendor/github.com/hashicorp/terraform/config/module/inode_windows.go') diff --git a/vendor/github.com/hashicorp/terraform/config/module/inode_windows.go b/vendor/github.com/hashicorp/terraform/config/module/inode_windows.go new file mode 100644 index 0000000..c0cf455 --- /dev/null +++ b/vendor/github.com/hashicorp/terraform/config/module/inode_windows.go @@ -0,0 +1,8 @@ +// +build windows + +package module + +// no syscall.Stat_t on windows, return 0 for inodes +func inode(path string) (uint64, error) { + return 0, nil +} -- cgit v1.2.3