11 lines
163 B
Go
11 lines
163 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func openTTY() (packer.TTY, error) {
|
||
|
return false, fmt.Errorf("cannot determine if process is backgrounded in " +
|
||
|
"openbsd")
|
||
|
}
|