We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 156255f commit d8df375Copy full SHA for d8df375
.gitignore
@@ -24,3 +24,5 @@ first-clone-setup-fast-log
24
project/.bloop/
25
project/metals.sbt
26
project/project/
27
+.ivy2
28
+.sbt
variables.mk
@@ -220,7 +220,8 @@ SBT_CLIENT_FLAG = --client
220
endif
221
222
# passes $(JAVA_TOOL_OPTIONS) from env to java
223
-SBT_BIN ?= java -jar $(ROCKETCHIP_DIR)/sbt-launch.jar
+export SBT_OPTS ?= -Dsbt.ivy.home=$(base_dir)/.ivy2 -Dsbt.global.base=$(base_dir)/.sbt -Dsbt.boot.directory=$(base_dir)/.sbt/boot/
224
+SBT_BIN ?= java -jar $(ROCKETCHIP_DIR)/sbt-launch.jar $(SBT_OPTS)
225
SBT = $(SBT_BIN) $(SBT_CLIENT_FLAG)
226
SBT_NON_THIN = $(subst $(SBT_CLIENT_FLAG),,$(SBT))
227
0 commit comments