f541f2e59b
* Do not set attributes when spawning the getter child * Cleanup * Cleanup --------- Co-authored-by: the-nando <the-nando@invalid.local>
23 lines
471 B
Go
23 lines
471 B
Go
//go:build !linux && !windows
|
|
|
|
package getter
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
// lockdown is not implemented by default
|
|
func lockdown(string, string) error {
|
|
return nil
|
|
}
|
|
|
|
// defaultEnvironment is the default minimal environment variables for Unix-like
|
|
// operating systems.
|
|
func defaultEnvironment(taskDir string) map[string]string {
|
|
tmpDir := filepath.Join(taskDir, "tmp")
|
|
return map[string]string{
|
|
"PATH": "/usr/local/bin:/usr/bin:/bin",
|
|
"TMPDIR": tmpDir,
|
|
}
|
|
}
|