aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/go-getter/get_file.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/go-getter/get_file.go')
-rw-r--r--vendor/github.com/hashicorp/go-getter/get_file.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/vendor/github.com/hashicorp/go-getter/get_file.go b/vendor/github.com/hashicorp/go-getter/get_file.go
index e5d2d61..7866083 100644
--- a/vendor/github.com/hashicorp/go-getter/get_file.go
+++ b/vendor/github.com/hashicorp/go-getter/get_file.go
@@ -8,7 +8,11 @@ import (
8// FileGetter is a Getter implementation that will download a module from 8// FileGetter is a Getter implementation that will download a module from
9// a file scheme. 9// a file scheme.
10type FileGetter struct { 10type FileGetter struct {
11 // Copy, if set to true, will copy data instead of using a symlink 11 getter
12
13 // Copy, if set to true, will copy data instead of using a symlink. If
14 // false, attempts to symlink to speed up the operation and to lower the
15 // disk space usage. If the symlink fails, may attempt to copy on windows.
12 Copy bool 16 Copy bool
13} 17}
14 18