]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blobdiff - vendor/github.com/hashicorp/go-getter/get_file.go
Upgrade to 0.12
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / hashicorp / go-getter / get_file.go
index e5d2d61d7d87b6b73c0c29a79222bc912ee4ccb5..78660839a07ede6cf42a8d4307fed97f2fc0f83e 100644 (file)
@@ -8,7 +8,11 @@ import (
 // FileGetter is a Getter implementation that will download a module from
 // a file scheme.
 type FileGetter struct {
-       // Copy, if set to true, will copy data instead of using a symlink
+       getter
+
+       // Copy, if set to true, will copy data instead of using a symlink. If
+       // false, attempts to symlink to speed up the operation and to lower the
+       // disk space usage. If the symlink fails, may attempt to copy on windows.
        Copy bool
 }