summaryrefslogtreecommitdiffstats
path: root/common/hugio/copy.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/hugio/copy.go')
-rw-r--r--common/hugio/copy.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/common/hugio/copy.go b/common/hugio/copy.go
index cd2eac036..8dbadc48c 100644
--- a/common/hugio/copy.go
+++ b/common/hugio/copy.go
@@ -16,7 +16,6 @@ package hugio
import (
"fmt"
"io"
- "io/ioutil"
"path/filepath"
"github.com/spf13/afero"
@@ -66,7 +65,7 @@ func CopyDir(fs afero.Fs, from, to string, shouldCopy func(filename string) bool
return err
}
- entries, _ := ioutil.ReadDir(from)
+ entries, _ := afero.ReadDir(fs, from)
for _, entry := range entries {
fromFilename := filepath.Join(from, entry.Name())
toFilename := filepath.Join(to, entry.Name())