Skip to content

Commit

Permalink
chore: use absolute path
Browse files Browse the repository at this point in the history
  • Loading branch information
MegaRedHand committed Jan 21, 2025
1 parent 7caaa16 commit 3c9f3d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmds/start_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 3c9f3d5

Please sign in to comment.