Check for thin client flag | Bump SBT to 1.4.9

This commit is contained in:
abejgonzalez
2021-05-06 14:05:59 -07:00
parent 365e2ea81e
commit 7195c0cbd1
2 changed files with 8 additions and 3 deletions

View File

@@ -247,12 +247,17 @@ SBT_COMMAND ?= shell
launch-sbt:
cd $(base_dir) && $(SBT_NON_THIN) "$(SBT_COMMAND)"
check-thin-client:
ifeq (,$(ENABLE_SBT_THIN_CLIENT))
$(error ENABLE_SBT_THIN_CLIENT not set.)
endif
.PHONY: shutdown-sbt-server
shutdown-sbt-server:
shutdown-sbt-server: check-thin-client
cd $(base_dir) && $(SBT) "shutdown"
.PHONY: start-sbt-server
start-sbt-server:
start-sbt-server: check-thin-client
cd $(base_dir) && $(SBT) "exit"
#########################################################################################