1
1
mirror of https://github.com/nektos/act.git synced 2024-09-17 15:27:27 +03:00
act/pkg/container/util_plan9.go
2022-11-16 21:29:45 +00:00

18 lines
280 B
Go

package container
import (
"errors"
"os"
"syscall"
)
func getSysProcAttr(cmdLine string, tty bool) *syscall.SysProcAttr {
return &syscall.SysProcAttr{
Rfork: syscall.RFNOTEG,
}
}
func openPty() (*os.File, *os.File, error) {
return nil, nil, errors.New("Unsupported")
}