Skip to content

Commit 0a80f04

Browse files
committed
tools: Drop gomarkdoc
Motivated by reducing the set of things installed not via RPM or Go vendoring. I noticed this going by during a build. For anything we want to document, there's pkg.go.dev and our existing manual markdown.
1 parent 5c708b4 commit 0a80f04

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

tools/Makefile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ build:
1010
mkdir -p bin
1111
test -f bin/schematyper || \
1212
go install github.com/idubinskiy/schematyper@latest
13-
test -e bin/gomarkdoc || \
14-
go install github.com/princjef/gomarkdoc/cmd/gomarkdoc@latest
1513
rm -rf pkg
1614

1715
clean:
1816
rm -rfv bin
1917
rm -rfv pkg
2018

21-
install: bin/gomarkdoc bin/schematyper
22-
install -v -D -t $(DESTDIR)$(PREFIX)/bin bin/{gomarkdoc,schematyper}
19+
install: bin/schematyper
20+
install -v -D -t $(DESTDIR)$(PREFIX)/bin bin/schematyper

tools/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@
33
This directory contains Golang Tools that are needed for building/using
44
`gangplank`, generating schemas, or generating Markdown documentation.
55

6-
- gomarkdoc
76
- schematyper

0 commit comments

Comments
 (0)