mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-26 11:32:04 -05:00
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")
|
||
|
|
}
|