From 0c7495ba634520cca18276a1694cb6cc75105d2b Mon Sep 17 00:00:00 2001 From: Chemaclass Date: Sun, 29 Sep 2024 18:17:43 +0200 Subject: [PATCH] add .env instead of .env.exmple there is no actual secret to hide on the .env, so we can add it to the repo --- .env.example => .env | 4 ++-- .gitignore | 2 -- Makefile | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) rename .env.example => .env (82%) diff --git a/.env.example b/.env similarity index 82% rename from .env.example rename to .env index d3a87a8..979b0b4 100644 --- a/.env.example +++ b/.env @@ -6,5 +6,5 @@ PR_LINK_PREFIX_TEXT="Closes: " PR_LABEL_MAPPING="docs:documentation; fix|bug|bugfix|hotfix:bug; default:enhancement" # lib/bashunit -BASHUNIT_DEFAULT_PATH=tests -BASHUNIT_LOAD_FILE=tests/bootstrap.sh +BASHUNIT_DEFAULT_PATH="tests" +BASHUNIT_LOAD_FILE="tests/bootstrap.sh" diff --git a/.gitignore b/.gitignore index 08c6a1d..0f91796 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,3 @@ bin/ lib/ .idea/ .vscode/ - -.env diff --git a/Makefile b/Makefile index 208c84f..a7de431 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ SRC_SCRIPTS_DIR=src PRE_COMMIT_SCRIPTS_FILE=./bin/pre-commit test: $(TEST_SCRIPTS_DIR) - @lib/bashunit tests --load tests/bootstrap.sh + @lib/bashunit tests pre_commit/install: @echo "Installing pre-commit hook"