Skip to content

Commit 6bdc793

Browse files
committed
Fix test command in Makefile to load the correct AI module from the dist directory
1 parent 9cca757 commit 6bdc793

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ $(BUILD_DIR)/%.o: %.c
135135
$(CC) $(CFLAGS) -O3 -fPIC -c $< -o $@
136136

137137
test: $(TARGET)
138-
$(SQLITE3) ":memory:" -cmd ".bail on" ".load ./$<" "SELECT ai_version();"
138+
$(SQLITE3) ":memory:" -cmd ".bail on" ".load ./dist/ai" "SELECT ai_version();"
139139

140140
# Build submodules
141141
ifneq ($(PLATFORM),windows)

0 commit comments

Comments
 (0)