1
0
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:
Karol Stasiak
2018-03-28 19:31:10 +02:00
parent 1fcbf9fd5b
commit 1a0737e4c9
21 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -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)