mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
c97625e840
Co-authored-by: Ralf Pannemans <ralf.pannemans@sap.com> Co-authored-by: Johannes Dillmann <j.dillmann@sap.com> Co-authored-by: Sumit Kulhadia <sumit.kulhadia@sap.com>
13 lines
212 B
Go
13 lines
212 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package cmd
|
|
|
|
import "syscall"
|
|
|
|
func init() {
|
|
// unset umask otherwise permissions on file or directory
|
|
// creation are altered in unpredictable ways.
|
|
syscall.Umask(0)
|
|
}
|