Merge pull request #5879 from xt1033/bugfix/updated-Makefile-to-enable-string-concatenation

Fixed Docs Makefile to open build/html/index.html in browser(#5878)
This commit is contained in:
Andrey Rakhmatullin 2023-03-29 12:06:07 +04:00 committed by GitHub
commit 4249fc64d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ coverage: build
htmlview: html
$(PYTHON) -c "import webbrowser; from pathlib import Path; \
webbrowser.open('file://' + Path('build/html/index.html').resolve())"
webbrowser.open(Path('build/html/index.html').resolve().as_uri())"
clean:
-rm -rf build/*