Skip to content

Commit

Permalink
deprecate sandbox-cli command (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatousJobanek authored Jul 3, 2024
1 parent 7bf82e4 commit c680957
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions cmd/sandbox-cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@

package main

import "github.com/kubesaw/ksctl/pkg/cmd"
import (
"fmt"
"os"
)

func main() {
cmd.Execute()
fmt.Println("ERROR: The sandbox-cli command has been migrated to ksctl. Please use ksctl instead.")
os.Exit(1)
}

0 comments on commit c680957

Please sign in to comment.