From 8f283499e98b39cd73adb13b6af1715a08585225 Mon Sep 17 00:00:00 2001 From: Kurnianto Trilaksono Date: Thu, 31 Aug 2023 15:17:06 +0700 Subject: [PATCH] add go mod tidy before workspace sync --- 0 | 1 - Makefile | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 0 diff --git a/0 b/0 deleted file mode 100644 index 6d34a2e5ed..0000000000 --- a/0 +++ /dev/null @@ -1 +0,0 @@ - 1607 diff --git a/Makefile b/Makefile index d7a328ee7e..b671a26880 100644 --- a/Makefile +++ b/Makefile @@ -186,6 +186,7 @@ test-examples-kustomize-against-latest-release: $(MYGOBIN)/mdrip # Pushes dependencies in the go.work file back to go.mod files of each workspace module. .PHONY: workspace-sync workspace sync: + go mod tidy go work sync # --- Cleanup targets ---