mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
a6acb1cd1a
* Allow users to be readded if they were ever removed * Address review comment * lint
11 lines
192 B
Go
11 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
|
|
)
|