From a7fd98fd1ff426098a936f40c658ceaee965c470 Mon Sep 17 00:00:00 2001 From: danielpodwysocki <48068081+danielpodwysocki@users.noreply.github.com> Date: Mon, 23 Oct 2023 14:05:53 +0200 Subject: [PATCH] add macOS support for the 'docs' make target (#37) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2d71a6f..52d91ac 100644 --- a/Makefile +++ b/Makefile @@ -91,7 +91,7 @@ release: ## Create a new tag for release. docs: ## Build the documentation. @echo "building documentation ..." @$(ENV_PREFIX)mkdocs build - URL="site/index.html"; xdg-open $$URL || sensible-browser $$URL || x-www-browser $$URL || gnome-open $$URL + URL="site/index.html"; xdg-open $$URL || sensible-browser $$URL || x-www-browser $$URL || gnome-open $$URL || open $$URL .PHONY: switch-to-poetry switch-to-poetry: ## Switch to poetry package manager.