mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2025-09-30 19:22:09 +00:00
7 lines
122 B
Go
7 lines
122 B
Go
package artifactcache
|
|
|
|
import "syscall"
|
|
|
|
func suicide() error {
|
|
return syscall.Kill(syscall.Getpid(), syscall.SIGTERM)
|
|
}
|