goadesign / model

Create your software architecture models and diagrams in Go.
MIT License
332 stars 19 forks source link

fix: when gen dir doesn't exist, editor panics #664

Closed dvictor closed 3 months ago

dvictor commented 3 months ago

If gen dir doesn't exist, it's created with 0600 perms, thus not listable. When the web server tried to list the dir, it got a permission denied err. That was not correctly checked.

This fixes the default perm for gen dir and checks the list dir error.

raphael commented 3 months ago

That's great, thank you!