Add longnail merge and schedule

This commit is contained in:
2025-10-01 17:52:41 +02:00
parent b301dbb6ce
commit ebfe841e2b
24 changed files with 421 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
package com.minres.tgc.hammer
import os.*
object FileUtils {
def changeExtension(path: os.Path, newExt: String): os.Path = {
val baseName = path.baseName
val newName = s"$baseName.$newExt"
path / os.up / newName
}
}