jondot / hygen

The simple, fast, and scalable code generator that lives in your project.
http://www.hygen.io
MIT License
5.57k stars 252 forks source link

how to just create a folder? without any files? #419

Closed sibelius closed 1 year ago

sibelius commented 1 year ago

how to just create a folder? without any files?

kaplanan commented 1 year ago

You could use the Shell Execution feature as follows:

---
sh: cd <%= cwd %>/path/to/to/parent && mkdir <%= folderName %>
---

Which seems like a exploit-ish approach to me, but it does the job I guess.

sibelius commented 1 year ago

it works thanks