diff --git a/README.md b/README.md index efea0d3..c9d6db7 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ The `/dist/` directory, on the other hand, contains general and system-specific The source text for The Arsse's manual can be found in `/docs/`, with pages written in [Markdown](https://spec.commonmark.org/current/) and converted to HTML [with Daux](#building-the-manual). If a static manual is generated its files will appear under `/manual/`. -The Arsse also has a UNIX manual page, also written in Markdown, which can be found under `/manpages/`. [Pandoc](https://pandoc.org/) is needed to convert it to the appropriate format, with the results stored under `/dist/man/`. +The Arsse also has a UNIX manual page written in [mdoc](https://man.archlinux.org/man/extra/mandoc/mandoc_mdoc.7.en) format, which can be found under `/dist/man/`. In addition to the manuals the files `/README.md` (this file), `/CHANGELOG`, `/UPGRADING`, `/LICENSE`, and `/AUTHORS` also document various things about the software, rather than the software itself. diff --git a/RoboFile.php b/RoboFile.php index b0ca1e0..c83be4e 100644 --- a/RoboFile.php +++ b/RoboFile.php @@ -189,8 +189,8 @@ class RoboFile extends \Robo\Tasks { * of new tooling. */ public function packageGeneric(string $commit = null): Result { - if (!$this->toolExists("git", "pandoc")) { - throw new \Exception("Git and Pandoc are required in PATH to produce generic release tarballs"); + if (!$this->toolExists("git")) { + throw new \Exception("Git is required in PATH to produce generic release tarballs"); } // establish which commit to package [$commit, $version] = $this->commitVersion($commit);