From 0bbc943b655d05df4600e6ab82d20fff110e7d8a Mon Sep 17 00:00:00 2001 From: Winford Date: Sun, 7 Dec 2025 23:02:06 +0000 Subject: [PATCH] Fix broken link in docs Removes the custom "docs" output directory in favor of the default "doc" directory to avoid warnings when publishing to hexdocs. SECURITY.md was missing from the ex_doc extras section. Add generated `doc` directory to `.gitignore`. Signed-off-by: Winford --- .gitignore | 1 + rebar.config | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index dae7416..eded701 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ _build _checkouts rebar3.crashdump erl_crash.dump +doc diff --git a/rebar.config b/rebar.config index 1dc4b30..075eb54 100644 --- a/rebar.config +++ b/rebar.config @@ -20,10 +20,10 @@ <<"UPDATING.md">>, <<"LICENSE">>, <<"CONTRIBUTING.md">>, - <<"CODE_OF_CONDUCT.md">> + <<"CODE_OF_CONDUCT.md">>, + <<"SECURITY.md">> ]}, {main, <<"README.md">>}, - {output, "docs"}, {api_reference, true}, {skip_undefined_reference_warnings_on, ["README.md"]} ]}.