From 73f3b467e79213843ff2d4894a281fa7f8a531e6 Mon Sep 17 00:00:00 2001 From: Dustin Scott Date: Wed, 17 Apr 2024 08:03:57 -0500 Subject: [PATCH] fix: remove hard-coded replace statement in generated go.mod This was used to local testing to ensure compatibility with operator-builder-tools. Forgot to remove it. Signed-off-by: Dustin Scott --- internal/plugins/workload/v1/scaffolds/templates/gomod.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/plugins/workload/v1/scaffolds/templates/gomod.go b/internal/plugins/workload/v1/scaffolds/templates/gomod.go index 4c7e7d5..3f0c678 100644 --- a/internal/plugins/workload/v1/scaffolds/templates/gomod.go +++ b/internal/plugins/workload/v1/scaffolds/templates/gomod.go @@ -69,8 +69,6 @@ module {{ .Repo }} go {{ .GoVersionMinimum }} -replace github.com/nukleros/operator-builder-tools => /Users/dscott/VSCode/github/scottd018/operator-builder-tools - require ( {{ range $package, $version := $.Dependencies }} "{{ $package }}" {{ $version }}