From 3e8d9545af297f6ba481b0449d03c39c80ff333a Mon Sep 17 00:00:00 2001 From: Alec Thomas Date: Tue, 30 Apr 2024 23:26:04 +1000 Subject: [PATCH] chore: fix replace directives --- integration/testdata/go/cron/go.mod | 2 +- integration/testdata/go/database/go.mod | 2 +- integration/testdata/go/echo/go.mod | 2 +- integration/testdata/go/httpingress/go.mod | 2 +- integration/testdata/go/time/go.mod | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/integration/testdata/go/cron/go.mod b/integration/testdata/go/cron/go.mod index 8316fbc8b3..ed1d0ea95c 100644 --- a/integration/testdata/go/cron/go.mod +++ b/integration/testdata/go/cron/go.mod @@ -43,4 +43,4 @@ require ( google.golang.org/protobuf v1.33.0 // indirect ) -replace github.com/TBD54566975/ftl => ../../../../.. +replace github.com/TBD54566975/ftl => ../../../.. diff --git a/integration/testdata/go/database/go.mod b/integration/testdata/go/database/go.mod index 7f627d75db..13d7353fba 100644 --- a/integration/testdata/go/database/go.mod +++ b/integration/testdata/go/database/go.mod @@ -43,4 +43,4 @@ require ( google.golang.org/protobuf v1.33.0 // indirect ) -replace github.com/TBD54566975/ftl => /Users/alec/dev/ftl +replace github.com/TBD54566975/ftl => ../../../.. diff --git a/integration/testdata/go/echo/go.mod b/integration/testdata/go/echo/go.mod index 0484b9e7e9..abfea5eb25 100644 --- a/integration/testdata/go/echo/go.mod +++ b/integration/testdata/go/echo/go.mod @@ -2,7 +2,7 @@ module ftl/echo go 1.22.2 -replace github.com/TBD54566975/ftl => ../../../../.. +replace github.com/TBD54566975/ftl => ../../../.. require github.com/TBD54566975/ftl v0.0.0-00010101000000-000000000000 diff --git a/integration/testdata/go/httpingress/go.mod b/integration/testdata/go/httpingress/go.mod index 10ecf6cf22..c40d6d3167 100644 --- a/integration/testdata/go/httpingress/go.mod +++ b/integration/testdata/go/httpingress/go.mod @@ -43,4 +43,4 @@ require ( google.golang.org/protobuf v1.33.0 // indirect ) -replace github.com/TBD54566975/ftl => /Users/alec/dev/ftl +replace github.com/TBD54566975/ftl => ../../../.. diff --git a/integration/testdata/go/time/go.mod b/integration/testdata/go/time/go.mod index ce2a3974c8..6c51df80ff 100644 --- a/integration/testdata/go/time/go.mod +++ b/integration/testdata/go/time/go.mod @@ -2,4 +2,4 @@ module ftl/time go 1.22.2 -replace github.com/TBD54566975/ftl => ../../../../.. +replace github.com/TBD54566975/ftl => ../../../..