Aylur / astal

Building blocks for creating custom desktop shells
https://aylur.github.io/astal/
GNU Lesser General Public License v2.1
287 stars 37 forks source link

add --force arg to valadoc #125

Closed festeh closed 5 days ago

festeh commented 5 days ago

Hi!

I occasionally want to pull repo changes and update some lib with

meson setup --prefix /usr build
meson install -C build

but I get valadoc error on a second command: File already exists. One option is to nuke build/docs dir each time, other is to force the generation. wdyt?

Aylur commented 5 days ago

not needed, you can use the --wipe flag using meson

meson setup --prefix /usr build --wipe
meson install -C build