Files
.github
.vscode
cmd
pkg
artifacts
common
container
testdata
DOCKER_LICENSE
container_types.go
docker_auth.go
docker_build.go
docker_cli.go
docker_cli_test.go
docker_images.go
docker_images_test.go
docker_logger.go
docker_pull.go
docker_pull_test.go
docker_run.go
docker_run_test.go
docker_stub.go
docker_volume.go
executions_environment.go
file_collector.go
file_collector_test.go
host_environment.go
host_environment_test.go
linux_container_environment_extensions.go
linux_container_environment_extensions_test.go
parse_env_file.go
util.go
util_openbsd_mips64.go
util_plan9.go
util_windows.go
exprparser
lookpath
model
runner
workflowpattern
.actrc
.editorconfig
.gitignore
.gitleaksignore
.golangci.yml
.goreleaser.yml
.markdownlint.yml
.mega-linter.yml
.mergify.yml
.prettierignore
.prettierrc.yml
CODEOWNERS
CONTRIBUTING.md
IMAGES.md
LICENSE
Makefile
README.md
VERIFICATION
VERSION
act-cli.nuspec
codecov.yml
go.mod
go.sum
install.sh
main.go
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")
}