We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99f447e commit 3215782Copy full SHA for 3215782
cli/templateextract.go
@@ -68,10 +68,8 @@ func templateExport() *cobra.Command {
68
// Stat the destination to ensure nothing exists already.
69
stat, err := os.Stat(templateName)
70
if stat != nil {
71
- return xerrors.Errorf("template file/directory already exists: %w", err)
+ return xerrors.Errorf("template file/directory already exists: %s", err)
72
}
73
- fmt.Println("err = ", err)
74
- fmt.Println("templateName = ", templateName)
75
76
return tarBytesToTree(templateName, raw)
77
},
0 commit comments