Merge branch 'release/1.2.3' into main
This commit is contained in:
commit
782c7cebf4
2 changed files with 3 additions and 4 deletions
2
Makefile
2
Makefile
|
|
@ -1,5 +1,5 @@
|
|||
# =============================================================================
|
||||
# Knowledge Genome - Makefile v. 1.2.2
|
||||
# Knowledge Genome - Makefile v. 1.2.3
|
||||
# Orchestrates the setup and management of the knowledge base.
|
||||
# =============================================================================
|
||||
|
||||
|
|
|
|||
|
|
@ -11,9 +11,8 @@ set -euo pipefail
|
|||
FAILED=0
|
||||
|
||||
# Verify git-crypt is initialized
|
||||
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"
|
||||
if ! git-crypt status >/dev/null 2>&1; then
|
||||
printf "\n[CRITICAL] git-crypt not initialized.\n"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue