5f076d4328
fix #7586
12 lines
166 B
Go
12 lines
166 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
)
|
|
|
|
func openTTY() (packer.TTY, error) {
|
|
return nil, fmt.Errorf("no TTY available on solaris")
|
|
}
|