We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f00c3d commit 6b7b676Copy full SHA for 6b7b676
tools/make/run.mk
@@ -30,9 +30,9 @@ build-ai-plugin:
30
dev-build-ai-plugin:
31
@echo "🔧 Building AI plugin for development..."
32
@if [ -d "$(AI_PLUGIN_DIR)" ]; then \
33
- cd $(AI_PLUGIN_DIR) && make build; \
+ cd $(AI_PLUGIN_DIR) && make build && cd - > /dev/null; \
34
mkdir -p bin; \
35
- cp $(AI_PLUGIN_DIR)/bin/atest-ext-ai bin/; \
+ cp -f $(AI_PLUGIN_DIR)/bin/atest-ext-ai bin/atest-ext-ai; \
36
if [ -f ~/.config/atest/bin/atest-ext-ai ]; then \
37
mv ~/.config/atest/bin/atest-ext-ai ~/.config/atest/bin/atest-ext-ai.backup; \
38
echo "✅ Backed up system version, now using development version"; \
0 commit comments