mirror of
https://github.com/KarolS/millfork.git
synced 2025-08-14 13:26:05 +00:00
Rename documentation files
This commit is contained in:
@@ -44,9 +44,9 @@ For binary releases, see: https://github.com/KarolS/millfork/releases (latest: 0
|
|||||||
|
|
||||||
## More info
|
## More info
|
||||||
|
|
||||||
* [Documentation](doc/README.md)
|
* [Documentation](docs/index.md)
|
||||||
|
|
||||||
* [Example programs](examples/README.md)
|
* [Example programs](examples/index.md)
|
||||||
|
|
||||||
## Planned features
|
## Planned features
|
||||||
|
|
||||||
|
@@ -59,7 +59,7 @@ releaseDist := {
|
|||||||
IO.copyDirectory(base / name, distDir / name)
|
IO.copyDirectory(base / name, distDir / name)
|
||||||
}
|
}
|
||||||
copyDir("include")
|
copyDir("include")
|
||||||
copyDir("doc")
|
copyDir("docs")
|
||||||
def entries(f: File): List[File] = f :: (if (f.isDirectory) IO.listFiles(f).toList.flatMap(entries) else Nil)
|
def entries(f: File): List[File] = f :: (if (f.isDirectory) IO.listFiles(f).toList.flatMap(entries) else Nil)
|
||||||
IO.zip(entries(distDir).map(d => (d, d.getAbsolutePath.substring(distDir.getParent.length + 1))), zipFile)
|
IO.zip(entries(distDir).map(d => (d, d.getAbsolutePath.substring(distDir.getParent.length + 1))), zipFile)
|
||||||
IO.delete(distDir)
|
IO.delete(distDir)
|
||||||
|
Reference in New Issue
Block a user