Add longnail merge and schedule
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user