Skip to content
This repository was archived by the owner on Jan 29, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions cmd/tctl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,22 @@ import (
"log"
"os"

"github.com/fatih/color"
"github.com/temporalio/tctl/cli"
"github.com/temporalio/tctl/cli_curr"
"github.com/temporalio/tctl/config"
)

const deprecationNotice = ("DEPRECATION NOTICE: tctl will enter End of Support September 30, 2025. " +
"Please transition to Temporal CLI (https://docs.temporal.io/cli).")

// See https://docs.temporal.io/tctl/ for usage
func main() {
tctlConfig, _ := config.NewTctlConfig()
version := tctlConfig.Version

os.Stderr.WriteString(color.RedString(deprecationNotice) + "\n\n")

var err error
if version == "next" || version == "2" {
appNext := cli.NewCliApp()
Expand Down
Loading