Skip to content

Commit

Permalink
update makev
Browse files Browse the repository at this point in the history
  • Loading branch information
metalim committed Dec 18, 2024
1 parent 61d7321 commit 1ed3e8f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion makev/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ func main() {
folder := filepath.Join("o1", name)
err := os.MkdirAll(folder, 0755)
catch(err)
err = os.WriteFile(filepath.Join(folder, name+".go"), []byte("/*\n\n*/\n\n"), 0644)
err = os.WriteFile(filepath.Join(folder, name+".go"), nil, 0644)
catch(err)
err = os.WriteFile(filepath.Join(folder, name+".txt"), nil, 0644)
catch(err)
}

Expand Down

0 comments on commit 1ed3e8f

Please sign in to comment.