Files
nomad/helper/funcs_unix.go
2025-09-16 09:14:50 -04:00

14 lines
332 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
package helper
import "os"
func IsExecutable(i os.FileInfo) bool {
return !i.IsDir() && i.Mode()&0o111 != 0
}