mirror of
https://github.com/KarolS/millfork.git
synced 2025-04-04 22:29:32 +00:00
Create output directories if needed; implements #21
This commit is contained in:
parent
e69b7084bc
commit
b421dbba4f
@ -74,6 +74,18 @@ object Main {
|
||||
case _ => "a"
|
||||
}
|
||||
}
|
||||
|
||||
val outputParent = new File(output).getParentFile
|
||||
if (outputParent.exists()) {
|
||||
if (!outputParent.canWrite || !outputParent.isDirectory) {
|
||||
errorReporting.warn(s"The output directory `${outputParent.getAbsolutePath}` cannot be written to.")
|
||||
}
|
||||
} else {
|
||||
if (!outputParent.mkdirs()) {
|
||||
errorReporting.warn(s"Failed to create the output directory `${outputParent.getAbsolutePath}``")
|
||||
}
|
||||
}
|
||||
|
||||
val assOutput = output + ".asm"
|
||||
// val prgOutputs = (platform.outputStyle match {
|
||||
// case OutputStyle.Single => List("default")
|
||||
|
Loading…
x
Reference in New Issue
Block a user