fleet/orbit/pkg/constant/constant_notwindows.go
Tomas Touceda a6acb1cd1a
Allow users to be readded if they were ever removed (#1945)
* Allow users to be readded if they were ever removed

* Address review comment

* lint
2021-09-07 13:33:40 -03:00

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
)