From 989136debfe08038283667bee76c032806e9ea6a Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Fri, 20 Sep 2019 10:36:16 -0400 Subject: [PATCH] Fix -v getting on all the time Fixes https://github.com/sbt/sbt/issues/5108 I messed up in https://github.com/sbt/sbt-launcher-package/pull/279/commits/91b71b39d34967bb87fa17d409f481c4109bbb64 by initializing the variable to 0. --- src/universal/bin/sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/universal/bin/sbt b/src/universal/bin/sbt index 0fbabf171..d72201d0a 100755 --- a/src/universal/bin/sbt +++ b/src/universal/bin/sbt @@ -13,8 +13,8 @@ declare init_sbt_version=_to_be_replaced declare sbt_default_mem=1024 declare -r default_sbt_opts="" declare -r default_java_opts="-Dfile.encoding=UTF-8" -declare sbt_verbose=0 -declare sbt_debug=0 +declare sbt_verbose= +declare sbt_debug= ### ------------------------------- ### ### Helper methods for BASH scripts ###