mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
10 lines
192 B
Go
10 lines
192 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package constant
|
|
|
|
const (
|
|
// DefaultExecutableMode is the default file mode to apply to created
|
|
// executable files.
|
|
DefaultExecutableMode = 0o755
|
|
)
|