/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/command/console_interactive_solaris.go
22 строки
532 B
Radek Simko
make copyrightfix
17 фев 2026, 16:56
17 фев 2026, 16:56
0fe906f
Код
Авторство
О чём код?
// Copyright IBM Corp. 2014, 2026 // SPDX-License-Identifier: BUSL-1.1 //go:build solaris // +build solaris package command import ( "fmt" "github.com/hashicorp/cli" "github.com/hashicorp/terraform/internal/repl" ) func (c *ConsoleCommand) modeInteractive(session *repl.Session, ui cli.Ui) int { ui.Error(fmt.Sprintf( "The readline library Terraform currently uses for the interactive\n" + "console is not supported by Solaris. Interactive mode is therefore\n" + "not supported on Solaris currently.")) return 1 }