Fix -v getting on all the time

Fixes https://github.com/sbt/sbt/issues/5108

I messed up in 91b71b39d3 by initializing the variable to 0.
This commit is contained in:
Eugene Yokota 2019-09-20 10:36:16 -04:00
parent 577cdb856d
commit 989136debf
1 changed files with 2 additions and 2 deletions

View File

@ -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 ###