From 3c9f3d5d30b158451f2688841ad6edc9fba10de6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gr=C3=BCner?= <47506558+MegaRedHand@users.noreply.github.com> Date: Tue, 21 Jan 2025 16:57:52 -0300 Subject: [PATCH] chore: use absolute path --- src/cmds/start_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmds/start_test.go b/src/cmds/start_test.go index fcc6d05c..44f2765e 100644 --- a/src/cmds/start_test.go +++ b/src/cmds/start_test.go @@ -62,7 +62,7 @@ func TestStartIncredibleSquaring(t *testing.T) { func TestStartLocalHelloWorld(t *testing.T) { t.Parallel() // Clone the hello-world-avs repo - err := exec.Command("sh", "-s", "cd ../../ && make examples/hello-world-avs").Run() + err := exec.Command("sh", "-s", "cd "+rootDir+" && make examples/hello-world-avs").Run() require.NoError(t, err, "Failed to make hello-world-avs repo") configFile := filepath.Join(examplesDir, "hello_world_local.yaml")