Compare commits

..

No commits in common. "782c7cebf4cbf03da4a29d952439b3ce3c772670" and "58147ae99cd3ef8d725abfea4d5f3cbf791478b8" have entirely different histories.

2 changed files with 4 additions and 3 deletions

View file

@ -1,5 +1,5 @@
# =============================================================================
# Knowledge Genome - Makefile v. 1.2.3
# Knowledge Genome - Makefile v. 1.2.2
# Orchestrates the setup and management of the knowledge base.
# =============================================================================

View file

@ -11,8 +11,9 @@ set -euo pipefail
FAILED=0
# Verify git-crypt is initialized
if ! git-crypt status >/dev/null 2>&1; then
printf "\n[CRITICAL] git-crypt not initialized.\n"
if [[ ! -d ".git-crypt" ]]; then
printf "\n\033[0;31m[CRITICAL] git-crypt not initialized.\033[0m\n"
printf "Run 'git-crypt init' and 'make setup' before committing.\n"
exit 1
fi