mirror of
https://github.com/garethgeorge/backrest.git
synced 2026-05-04 03:50:30 +00:00
13 lines
184 B
Go
13 lines
184 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package platformutil
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func SetPlatformOptions(cmd *exec.Cmd) {
|
|
// No special options needed for non-Windows platforms
|
|
}
|