Skip to content

Commit 84db597

Browse files
committed
fix: Fix new command
1 parent e613706 commit 84db597

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/actions/new.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ func (a *NewAction) Run(ctx context.Context) error {
6767
return err
6868
}
6969

70-
cleanFiles := []string{".git", "CHANGELOG.md", "LICENSE", "README.md", "internal/swagger/v3", "internal/wirex/wire_gen.go"}
70+
cleanFiles := []string{".git", "CHANGELOG.md", "LICENSE", "README.md", "README_CN.md", "internal/swagger/v3", "internal/wirex/wire_gen.go"}
7171
for _, f := range cleanFiles {
7272
if err := os.RemoveAll(filepath.Join(projectDir, f)); err != nil {
7373
return err

0 commit comments

Comments
 (0)