summaryrefslogtreecommitdiffstats
path: root/create/skeletons/skeletons.go
diff options
context:
space:
mode:
Diffstat (limited to 'create/skeletons/skeletons.go')
-rw-r--r--create/skeletons/skeletons.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/create/skeletons/skeletons.go b/create/skeletons/skeletons.go
index 7f7fb1bb7..aec79c149 100644
--- a/create/skeletons/skeletons.go
+++ b/create/skeletons/skeletons.go
@@ -1,4 +1,4 @@
-// Copyright 2023 The Hugo Authors. All rights reserved.
+// Copyright 2024 The Hugo Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -83,7 +83,7 @@ func copyFiles(createpath string, sourceFs afero.Fs, skeleton embed.FS) error {
return fs.WalkDir(skeleton, ".", func(path string, d fs.DirEntry, err error) error {
_, slug, _ := strings.Cut(path, "/")
if d.IsDir() {
- return sourceFs.MkdirAll(filepath.Join(createpath, slug), 0777)
+ return sourceFs.MkdirAll(filepath.Join(createpath, slug), 0o777)
} else {
if filepath.Base(path) != ".gitkeep" {
data, _ := fs.ReadFile(skeleton, path)