about summary refs log tree commit diff stats
path: root/cmd/build/template.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/build/template.go')
-rw-r--r--cmd/build/template.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/build/template.go b/cmd/build/template.go
index b3576a2..b56b7dd 100644
--- a/cmd/build/template.go
+++ b/cmd/build/template.go
@@ -29,7 +29,7 @@ var (
 
 func loadTemplate(path string) (file *os.File, err error) {
 	if templates[path] == nil {
-		file, err = os.Open(path)
+		file, err = os.OpenFile(path, os.O_RDONLY, 0)
 		if err != nil {
 			return nil, err
 		}