Skip to content

Commit 3215782

Browse files
committed
fix outputs
1 parent 99f447e commit 3215782

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

cli/templateextract.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,8 @@ func templateExport() *cobra.Command {
6868
// Stat the destination to ensure nothing exists already.
6969
stat, err := os.Stat(templateName)
7070
if stat != nil {
71-
return xerrors.Errorf("template file/directory already exists: %w", err)
71+
return xerrors.Errorf("template file/directory already exists: %s", err)
7272
}
73-
fmt.Println("err = ", err)
74-
fmt.Println("templateName = ", templateName)
7573

7674
return tarBytesToTree(templateName, raw)
7775
},

0 commit comments

Comments
 (0)