mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
14 lines
332 B
Go
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
|
|
}
|