From 657706a6d325c3ac5208689eedd3f77842f9f1c6 Mon Sep 17 00:00:00 2001 From: Manoel Aranda Neto Date: Tue, 18 May 2021 13:06:49 +0200 Subject: [PATCH] fix make file --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 4aa33425f9..0db2d8826f 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: all clean compile dryRelease doRelease release update stop checkFormat format api -all: clean checkFormat compile dryRelease +all: stop clean checkFormat compile dryRelease # deep clean clean: @@ -17,9 +17,7 @@ dryRelease: # deploy the current build to maven central # promotes the release to maven central doRelease: - cd scripts - kotlinc -script release.kts -- -d ../distributions | sh - cd .. + kotlinc -script scripts/release.kts -- -d ../distributions | sh ./gradlew closeAndReleaseRepository # clean, build, deploy and promote to maven central