summaryrefslogtreecommitdiff
path: root/template_unix.go
blob: b7d3c1549c61d430a675ac603730b1595efbcbe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//go:build !windows
// +build !windows

package gomplate

import (
	"os"

	"golang.org/x/sys/unix"
)

func isDirError(name string) *os.PathError {
	return &os.PathError{
		Op:   "open",
		Path: name,
		Err:  unix.EISDIR,
	}
}