Skip to content

Commit ef95abd

Browse files
committed
Move Black Belt CLI Makefile path references into module
1 parent 1c8d8d0 commit ef95abd

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

bin/Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,10 @@ config:
5959
show-config: config
6060
@echo "BBEA_MODEL override: $${BBEA_MODEL:-<not set>}"
6161
@echo "Engine URL: $${BBEA_ENGINE_URL:-http://127.0.0.1:11434/api/generate}"
62-
@echo "Prompt: $${BBEA_SYSTEM_PROMPT:-black.belt/sharp/system.prompt}"
62+
@echo "Prompt: $${BBEA_SYSTEM_PROMPT:-../../../black.belt/sharp/system.prompt}"
6363
@echo "Response directory: $${BBEA_SAVE_DIR:-$(SAVE_DIR)}"
6464
@echo "Network transport: $${BBEA_TRANSPORT:-<disabled>}"
6565

66-
# Validate Ollama connectivity and verify that the selected model exists.
6766
doctor: config
6867
@command -v $(OLLAMA) >/dev/null 2>&1 || { echo "FAIL: Ollama executable not found."; exit 2; }
6968
@model="$${BBEA_MODEL:-$$(cat $(MODEL_CONFIG))}"; \
@@ -112,7 +111,7 @@ install: all chmod-scripts
112111
install -Dm755 blackbelt-output.sh $(DESTDIR)$(PREFIX)/blackbelt-output.sh
113112
install -Dm644 BlackBeltCLI.class $(DESTDIR)$(PREFIX)/BlackBeltCLI.class
114113
install -Dm644 BlackBeltCLI.java $(DESTDIR)$(PREFIX)/BlackBeltCLI.java
115-
install -Dm644 ../black.belt/sharp/system.prompt $(DESTDIR)/usr/share/blackbelt/sharp/system.prompt
114+
install -Dm644 ../../../black.belt/sharp/system.prompt $(DESTDIR)/usr/share/blackbelt/sharp/system.prompt
116115

117116
clean:
118117
rm -f blackbelt-c blackbelt-cpp blackbelt-2 BlackBeltCLI.class

0 commit comments

Comments
 (0)