From 7b26381d31fca226281523af4492f4940a93370f Mon Sep 17 00:00:00 2001 From: Winford Date: Sun, 25 May 2025 02:22:30 +0000 Subject: [PATCH 1/2] Add docs artifact directory to .gitignore Adds the docs directory that is generated for documentation output to the .gitignore file to prevent contributors from accidentally commiting it, and to keep `git status` clean. Signed-off-by: Winford --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index f096383..963ebf6 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ **/erl_crash.dump !priv/.gitignore !examples/myapp/.gitignore +docs/** From 66bb6a3608f2533bd6ace92d2a9b2a543808fede Mon Sep 17 00:00:00 2001 From: Winford Date: Sun, 25 May 2025 02:24:55 +0000 Subject: [PATCH 2/2] Add docs directory to cleaned files Adds the docs directory that is generated when building documentation to the files that are removed by the `make clean` job in the Makefile. Signed-off-by: Winford --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 2047f39..48368d4 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,7 @@ etest: clean: rm -rf _build + rm -rf docs publish: doc rebar3 as publish hex publish --doc-dir docs