From 3bbffbadfffe1769431fa5e7f815480f583bcabe Mon Sep 17 00:00:00 2001 From: Serhii Prodan <22973227+serpro69@users.noreply.github.com> Date: Sun, 10 Mar 2024 17:48:51 +0100 Subject: [PATCH] Fix 'release' cmd in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c7ee85853..b56b6368e 100644 --- a/Makefile +++ b/Makefile @@ -172,8 +172,8 @@ release: check_java ## publishes the next release with a specified VERSION ./gradlew clean test integrationTest -Pversion=$(VERSION) # build and test native image ./gradlew nativeCompile -Pversion=$(VERSION) --info - ./cli-bot/build/graal/faker-bot_$(VERSION) list --verbose >/dev/null || false - ./cli-bot/build/graal/faker-bot_$(VERSION) lookup a --verbose >/dev/null || false + ./cli-bot/build/native/nativeCompile/faker-bot_$(VERSION) list --verbose >/dev/null || false + ./cli-bot/build/native/nativeCompile/faker-bot_$(VERSION) lookup a --verbose >/dev/null || false # publish to sonatype and close staging repo ./gradlew publishToSonatype closeSonatypeStagingRepository -Pversion=$(VERSION) --info # create and push git tag