From 613fc3c400f6c052367980e319c5ee374f8bc0d2 Mon Sep 17 00:00:00 2001 From: Andrea Luzzardi Date: Mon, 13 Dec 2021 16:10:00 +0100 Subject: [PATCH] tests: fix dagger binary path Signed-off-by: Andrea Luzzardi --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 760d9fff..8c9eb4b3 100644 --- a/Makefile +++ b/Makefile @@ -44,12 +44,12 @@ integration: core-integration universe-test doc-test .PHONY: core-integration core-integration: dagger-debug yarn --cwd "./tests" install - DAGGER_BINARY="../cmd/dagger/dagger-debug" yarn --cwd "./tests" test + DAGGER_BINARY="$(shell pwd)/cmd/dagger/dagger-debug" yarn --cwd "./tests" test .PHONY: universe-test universe-test: dagger-debug yarn --cwd "./universe" install - DAGGER_BINARY="../cmd/dagger/dagger-debug" yarn --cwd "./universe" test + DAGGER_BINARY="$(shell pwd)/cmd/dagger/dagger-debug" yarn --cwd "./universe" test .PHONY: doc-test doc-test: dagger-debug