mirror of https://github.com/sbt/sbt.git
Fix typo
This commit is contained in:
parent
10ca452bd8
commit
a6bc7b1c76
|
|
@ -84,7 +84,7 @@ object SysProp {
|
|||
|
||||
def supershell: Boolean = color && getOrTrue("sbt.supershell")
|
||||
|
||||
def supersheelSleep: Long = long("sbt.supershell.sleep", 100L)
|
||||
def supershellSleep: Long = long("sbt.supershell.sleep", 100L)
|
||||
|
||||
def defaultUseCoursier: Boolean = {
|
||||
val coursierOpt = booleanOpt("sbt.coursier")
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ private[sbt] final class TaskProgress(log: ManagedLogger)
|
|||
with ExecuteProgress[Task] {
|
||||
private[this] val lastTaskCount = new AtomicInteger(0)
|
||||
private[this] val currentProgressThread = new AtomicReference[Option[ProgressThread]](None)
|
||||
private[this] val sleepDuration = SysProp.supersheelSleep
|
||||
private[this] val sleepDuration = SysProp.supershellSleep
|
||||
private[this] final class ProgressThread
|
||||
extends Thread("task-progress-report-thread")
|
||||
with AutoCloseable {
|
||||
|
|
|
|||
Loading…
Reference in New Issue