mirror of https://github.com/sbt/sbt.git
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:
parent
577cdb856d
commit
989136debf
|
|
@ -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 ###
|
||||
|
|
|
|||
Loading…
Reference in New Issue