Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import scala.Ordering.Implicits._

Global / onChangedBuildSource := ReloadOnSourceChanges

ThisBuild / scalaVersion := "3.8.2"
ThisBuild / scalaVersion := "3.8.3"

val sharedSettings = Seq(
publish / skip := true,
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
# read the first non-empty string from the VERSION file
version = builtins.head (builtins.match "[ \n]*([^ \n]+).*" (builtins.readFile ./VERSION));

depsSha256 = "sha256-KYAyh73KcR4Hvo9l0LJHBarQqVtFGTO/vFIzsXp0LBM=";
depsSha256 = "sha256-03NUuK0Sgms1ry2IxXxswZp7k+a6JQBg37LQuRmlAmA=";

src = filter {
root = self;
Expand Down
2 changes: 1 addition & 1 deletion shared/src/main/scala/de/bley/scalals/Core.scala
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ trait Core:
val dirStack = mutable.Queue(dirPaths*)

while dirStack.nonEmpty do
val dir = dirStack.dequeue
val dir = dirStack.dequeue()

if showPrefix then println(s"\uf115 $dir:")

Expand Down