mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #22877 from s0undt3ch/hotfix/clean-docs-fix
Don't fail on `make clean` just because the directory does not exist
This commit is contained in:
commit
9211e36564
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ help:
|
|||
|
||||
clean:
|
||||
rm -rf $(BUILDDIR)/*
|
||||
test -d 'locale' && find locale/ -name *.mo -exec rm {} \;
|
||||
test -d 'locale' && find locale/ -name *.mo -exec rm {} \; || true
|
||||
|
||||
html: translations
|
||||
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
|
||||
|
|
Loading…
Add table
Reference in a new issue