mirror of
https://github.com/KarolS/millfork.git
synced 2024-12-23 08:29:35 +00:00
Rename documentation files
This commit is contained in:
parent
1fcbf9fd5b
commit
1a0737e4c9
@ -44,9 +44,9 @@ For binary releases, see: https://github.com/KarolS/millfork/releases (latest: 0
|
||||
|
||||
## More info
|
||||
|
||||
* [Documentation](doc/README.md)
|
||||
* [Documentation](docs/index.md)
|
||||
|
||||
* [Example programs](examples/README.md)
|
||||
* [Example programs](examples/index.md)
|
||||
|
||||
## Planned features
|
||||
|
||||
|
@ -59,7 +59,7 @@ releaseDist := {
|
||||
IO.copyDirectory(base / name, distDir / name)
|
||||
}
|
||||
copyDir("include")
|
||||
copyDir("doc")
|
||||
copyDir("docs")
|
||||
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.delete(distDir)
|
||||
|
Loading…
Reference in New Issue
Block a user