chore: update accordings to rename

This commit is contained in:
darshankabariya 2025-12-22 13:32:40 +05:30
parent 0f4edc1143
commit d698a6d1ff
No known key found for this signature in database
GPG Key ID: 9A92CCD9899F0D22

View File

@ -60,14 +60,14 @@ build-libwaku:
build: build-libwaku check-folders
@echo "Building Waku Go Bindings (manual)..."
go build ./waku
go build .
test: build
@echo "Running tests (manual)..."
@if [ -z "$(TEST)" ]; then \
go test ./waku; \
go test .; \
else \
go test ./waku -count=1 -run $(TEST) -v; \
go test . -count=1 -run $(TEST) -v; \
fi
build-auto: build-libwaku check-folders