Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mallardduck committed Dec 17, 2024
1 parent 36b409d commit ad7477f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkg/debug/chart.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,18 @@ import (
"compress/gzip"
"encoding/base64"
"fmt"
"github.com/spf13/cobra"
"io"
"os"
"path/filepath"

"github.com/spf13/cobra"
)

func ChartDebugSubCommand(base64ChartTarball string) *cobra.Command {
return &cobra.Command{
Use: "debug-chart",
Short: "This command helps debug the internal chart files",
Run: func(cmd *cobra.Command, args []string) {
Run: func(_ *cobra.Command, _ []string) {
fmt.Println("TODO debug")
// TODO: use straing data from base64ChartTarball to:
// Un-base64 the data to get a raw tgz file,
Expand Down

0 comments on commit ad7477f

Please sign in to comment.