From 46bb7b31d1d4ea351615ae890286e40b6d0a82c4 Mon Sep 17 00:00:00 2001 From: karza_abhishek Date: Tue, 28 Mar 2023 23:23:32 +0530 Subject: [PATCH] Fixed Docs Makefile to open build/html/index.html in browser(#5878) --- docs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Makefile b/docs/Makefile index 596cb6cef..48401bac8 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -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/*