Files

15 lines
261 B
Go
Raw Permalink Normal View History

// Copyright (c) HashiCorp, Inc.
2023-08-10 15:53:29 -07:00
// SPDX-License-Identifier: BUSL-1.1
package main
import (
"fmt"
2020-12-17 13:29:25 -08:00
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
)
2020-11-20 10:53:16 -08:00
func openTTY() (packersdk.TTY, error) {
return nil, fmt.Errorf("no TTY available on solaris")
}