mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 05:02:40 +00:00
Remove references to Pandoc
This commit is contained in:
parent
06ec67816a
commit
7f6b36d4da
2 changed files with 3 additions and 3 deletions
|
@ -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 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.
|
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.
|
||||||
|
|
||||||
|
|
|
@ -189,8 +189,8 @@ class RoboFile extends \Robo\Tasks {
|
||||||
* of new tooling.
|
* of new tooling.
|
||||||
*/
|
*/
|
||||||
public function packageGeneric(string $commit = null): Result {
|
public function packageGeneric(string $commit = null): Result {
|
||||||
if (!$this->toolExists("git", "pandoc")) {
|
if (!$this->toolExists("git")) {
|
||||||
throw new \Exception("Git and Pandoc are required in PATH to produce generic release tarballs");
|
throw new \Exception("Git is required in PATH to produce generic release tarballs");
|
||||||
}
|
}
|
||||||
// establish which commit to package
|
// establish which commit to package
|
||||||
[$commit, $version] = $this->commitVersion($commit);
|
[$commit, $version] = $this->commitVersion($commit);
|
||||||
|
|
Loading…
Reference in a new issue