summaryrefslogtreecommitdiffstats
path: root/hugofs/fs.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugofs/fs.go')
-rw-r--r--hugofs/fs.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/hugofs/fs.go b/hugofs/fs.go
index 75beda970..2c57fe8b5 100644
--- a/hugofs/fs.go
+++ b/hugofs/fs.go
@@ -23,10 +23,8 @@ import (
"github.com/spf13/afero"
)
-var (
- // Os points to the (real) Os filesystem.
- Os = &afero.OsFs{}
-)
+// Os points to the (real) Os filesystem.
+var Os = &afero.OsFs{}
// Fs abstracts the file system to separate source and destination file systems
// and allows both to be mocked for testing.