Closed festeh closed 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?
valadoc
File already exists
build/docs
not needed, you can use the --wipe flag using meson
--wipe
meson setup --prefix /usr build --wipe meson install -C build
Hi!
I occasionally want to pull repo changes and update some lib with
but I get
valadoc
error on a second command:File already exists
. One option is to nukebuild/docs
dir each time, other is to force the generation. wdyt?