From 32d6c858c29270a8e44f022228a619de3273b6bb Mon Sep 17 00:00:00 2001 From: Feny Mehta Date: Tue, 7 Jan 2025 19:52:00 +0530 Subject: [PATCH] Introduce a make command for pre-requisite of verify-replace Signed-off-by: Feny Mehta --- make/go.mk | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/make/go.mk b/make/go.mk index ec5fc2e6..36bd9f26 100644 --- a/make/go.mk +++ b/make/go.mk @@ -30,4 +30,8 @@ vet: .PHONY: verify-replace-run ## downloads all the repos that depend on toolchain-common, installs the current version of the library and runs all the verifications in order to check for compatibility and breaking changes verify-replace-run: - ./scripts/verify-replace.sh; \ No newline at end of file + ./scripts/verify-replace.sh; + +.PHONY: pre-verify +pre-verify: + echo "No Pre-requisite needed" \ No newline at end of file